Changeset 730873
- Timestamp:
- 06/24/2013 01:17:29 PM (13 years ago)
- File:
-
- 1 edited
-
youtube-with-style/trunk/plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
youtube-with-style/trunk/plugin.php
r652997 r730873 4 4 Plugin URI: http://wordpress.org/extend/plugins/youtube-with-style/ 5 5 Description: Show You Tube videos with a custom stylish player, also create a playlist, and search in real time via the youtube api. 6 Date: J anuary, 15th, 20137 Version: 9.16 Date: June, 24th, 2013 7 Version: 10.0 8 8 Author: Chris McCoy 9 9 Author URI: http://github.com/chrismccoy … … 63 63 function youtube_shortcode($atts,$content){ 64 64 global $post; 65 extract(shortcode_atts(array(' width' => 400,'height' => 300,), $atts));65 extract(shortcode_atts(array('autoplay' => 'false', 'width' => 400,'height' => 300,), $atts)); 66 66 67 67 return ' … … 69 69 var flashvars = {}; 70 70 flashvars.v = "'.$content.'"; 71 flashvars.autoplay = " false";71 flashvars.autoplay = "'.$autoplay.'"; 72 72 flashvars.blur = "10"; 73 73 flashvars.c_side_padding = "175";
Note: See TracChangeset
for help on using the changeset viewer.