git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
20 lines
474 B
PHP
20 lines
474 B
PHP
<?php
|
|
|
|
/**
|
|
* show content in an iframe
|
|
*/
|
|
|
|
function wpv_shortcode_iframe($atts, $content = null) {
|
|
extract(shortcode_atts(array(
|
|
'width' => false,
|
|
'height' => false,
|
|
'src' => '',
|
|
), $atts));
|
|
|
|
$width = $width?' width="'.$width.'"':'';
|
|
$height = $height?' height="'.$height.'"':'';
|
|
|
|
return '<div class="frame-fl"><iframe src="'.$src.'"'.$width.$height.' seamless="seamless"></iframe></div>';
|
|
}
|
|
|
|
add_shortcode('iframe','wpv_shortcode_iframe'); |