douren5490 2014-09-25 20:44
浏览 48
已采纳

如何从Wordpress自定义元框显示视频?

I used this plugin as a starting point to create a custom meta box that allows users to select a featured video. The meta box is working great, and now I am trying to figure out how to display the video in the post. The following code displays the video:

<video controls="controls" preload="auto" width="100%" height="100%">
    <source src="<?php
    // Retrieves the stored value from the database
    $meta_value = get_post_meta( get_the_ID(), 'meta-image', true );
    // Checks and displays the retrieved value
    if( !empty( $meta_value ) ) {
        echo $meta_value;
    } ?>" type="video/mp4" />
</video>

That's great. But I want to write a statement that says "if the post has a featured video, display it, if not display the featured thumbnail." Anyone know how to do this?

EDIT: I am getting closer. The following code almost works, but for the posts that have featured images (not videos), it displays an empty video player instead of the featured image. How can I modify the below code so that the featured images work?

<?php 

$slam_featured_video = get_post_meta( get_the_ID(), 'meta-image', true );

if (isset($meta_value))  {
    echo '<video controls="controls" preload="auto" width="100%" height="100%">
    <source src="'. $slam_featured_video. '" type="video/mp4" />
    </video>';
} elseif (empty($meta_value)) {
    echo the_post_thumbnail('full');
}

?>
  • 写回答

2条回答 默认 最新

  • dsf23223 2014-09-29 15:05
    关注

    After some more research and experimentation, I was able to find a solution. The following code works for me. Thanks to @manishie for setting me on the right track.

    <?php 
    
    $slam_featured_video = get_post_meta( get_the_ID(), 'meta-image', true );
    
    if (!empty($slam_featured_video))  {
        echo '<video controls="controls" preload="auto" width="100%" height="100%">
        <source src="'. $slam_featured_video. '" type="video/mp4" />
        </video>';
    } elseif (empty($slam_featured_video)) {
        echo the_post_thumbnail('full');
    }
    
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!