【发布时间】:2018-07-31 18:45:31
【问题描述】:
我已经设置了多个特色图片插件。这对我来说很好。
我的要求是:
if: The Multiple Post Thumbnail Exists
then: Show the Multiple Post Thumbnail Image
else: Show the Default Featured Image Thumbnail
现在我使用以下代码显示了多个特色图片:
<?php add_image_size('post-big-artful-interiorsimg-fullsize', full);
if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'big-artful-interiors', NULL, 'post-big-artful-interiorsimg-fullsize');
endif;
?>
并使用以下代码显示默认特色图片:
<?php the_post_thumbnail('thevoux-single',array('itemprop'=>'image')); ?>
所以请帮助我,如果多个特色图片不可用,我该如何显示默认特色图片。有什么想法可以告诉我。
谢谢。
【问题讨论】:
-
试试这个 'image')); } ?>
-
能否请您格式化代码并重新发送。谢谢。
-
这对你有用吗?然后我会添加答案!
-
我只喜欢格式化代码。所以首先请格式化代码然后我会测试。
-
试试下面的代码,如果它有效,请告诉我
标签: wordpress image post dynamic-featured-image