| 1 |
<?php |
| 2 |
|
| 3 |
/* |
| 4 |
Plugin Name: Iframe |
| 5 |
Plugin URI: http://web-profile.com.ua/wordpress/plugins/iframe/ |
| 6 |
Description: Plugin shows iframe with [iframe width="640" height="480" src="http://player.vimeo.com/video/3261363"] shortcode. |
| 7 |
Version: 1.0.0 |
| 8 |
Author: webvitaly |
| 9 |
Author Email: webvitaly(at)gmail.com |
| 10 |
Author URI: http://web-profile.com.ua/ |
| 11 |
*/ |
| 12 |
|
| 13 |
|
| 14 |
if ( !function_exists( 'iframe_embed_sortcode' ) ) { |
| 15 |
function iframe_embed_sortcode($atts, $content = null) { |
| 16 |
extract(shortcode_atts(array( |
| 17 |
'width' => '640', |
| 18 |
'height' => '480', |
| 19 |
'src' => '', |
| 20 |
'frameborder' => '0', |
| 21 |
'scrolling' => 'no', |
| 22 |
'marginheight' => '0', |
| 23 |
'marginwidth' => '0' |
| 24 |
), $atts)); |
| 25 |
return '<iframe width="'.$width.'" height="'.$height.'" frameborder="'.$frameborder.'" scrolling="'.$scrolling.'" marginheight="'.$marginheight.'" marginwidth="'.$marginwidth.'" src="'.$src.'" ></iframe>'; |
| 26 |
// &output=embed |
| 27 |
} |
| 28 |
add_shortcode('iframe', 'iframe_embed_sortcode'); |
| 29 |
} |
| 30 |
|