iframe_shortcode
Iframe Shortcode
// Add Shortcode
function iframe_shortcode( $atts , $content = null ) {
// Attributes
extract( shortcode_atts(
array(
'src' => 'http://cosmicsearch.org',
'error' => 'Sorry Iframes are not supported with your browser.',
), $atts )
);
// Code
return ´<iframe src=¨´ . $src .´¨>´ . $error . ´</iframe>´;
}
add_shortcode( '[iframe]', 'iframe_shortcode' );