EstudioJuridicoAlmagro_Web/www/wpv_common/shortcodes/iframe.php
david f72df580c3 - Importación inicial
- Ticket 1166 -> Orden de los idiomas ES FR EN RU

git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
2013-02-27 15:39:05 +00:00

20 lines
455 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');