在视频发布类型的缩略图覆盖上添加播放图标

时间:2017-03-16 作者:Kazem Nocktrine

我在想,如果真的要为视频帖子类型添加一个OK图标覆盖,我已经想出了一个代码,允许我在帖子没有拇指的情况下设置默认缩略图,下面是示例代码。

<div class="img-responsive"> <?php if ( has_post_thumbnail() ) : ?>
    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(\'big-grid-one-image\'); ?></a>
<?php else : ?>
    <img src=" <?php echo get_template_directory_uri (); ?>/img/no-thumb/acardio-548px-450px.png" />


<?php endif; ?></div>

1 个回复
SO网友:Sam

不知道你在哪里运行你的代码,但如果设置了,下面会得到视频的帖子类型。如果没有帖子类型,我想Wordpress会返回false。

// This will get the post id and then test for the format type
global $post;    
    $post_id = $post->ID;
    $post_format = get_post_format($post_id);

// If your post type is a video add the code inside
    if($post_format == \'video\'){
      //your code
    }

相关推荐

fetch images and videos

是否可以获取特定网站的视频和图像并将其发布?我的意思是我正在考虑写一个函数,在这里我只写网站名称,然后在网站url的帮助下,所有或最新的图片和视频都会发布到我的帖子上。这可能吗?