// This Function requres PHP 5 // Thanks to this blog post for help: http://themocracy.com/2010/03/a-flickr-badge-using-wordpress-shortcodes/ function pano_embed_shortcode($atts){ $query_atts = shortcode_atts( array('pano'=>'sS5Cpw', 'width'=>'620', 'height'=>'300'), $atts); return sprintf('
', $query_atts['width'],http_build_query($query_atts)); } add_shortcode('panoembed','pano_embed_shortcode'); ?>