casey
0
Q:

how to display video element in wordpress shortcode

[video5 src="http://your-site/videos/your-video.mp4" width="720" height="480"]
0
function html5_video($atts, $content = null) {
	extract(shortcode_atts(array(
		"src" => '',
		"width" => '',
		"height" => ''
	), $atts));
	return '<video src="'.$src.'" width="'.$width.'" height="'.$height.'" controls autobuffer>';
}
add_shortcode('video5', 'html5_video');
0

New to Communities?

Join the community