Aggiungendo il seguente snippet all’interno del vostro file functions.php del vostro tema WordPress sarà possibile aggiungere un video HTML5 attraverso shortcode.

 
function html5_video($atts, $content = null) {
extract(shortcode_atts(array(
"src" => ,
"width" => ,
"height" =>
), $atts));
return ;
}
add_shortcode(‘video5′, ‘html5_video’);

fonte: www.sastgroup.com ? Vai al post originale