<?php
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => null, // any parent
'post_mime_type' => 'video/mp4'
);
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $post ) {
setup_postdata( $post );
the_title( );
// the_attachment_link( $post->ID, false );
?>
<video width="320" height="240" controls>
<source src="<?php wp_get_attachment_link( $post->ID, false ); ?>" type="video/mp4">
</video>
<?php
the_excerpt( );
}
}
?>
我已经在wordpress媒体上传了mp4视频,但我无法播放html5标签我不知道我哪里出错了任何帮助都会受到赞赏。
答案 0 :(得分:0)
按照以下文章,确保您提供了至少两种html5视频格式
http://www.betterhostreview.com/add-html5-videos-wordpress.html
您可以将视频文件从任何html5视频转换器应用转换为html5视频格式,或者您可以看到以下网址,
http://www.betterhostreview.com/free-video-converter-convert-html5-videos-freemake.html