在Wordpress中替换Archive.php类别摘要中的“精选”图像

时间:2013-07-22 05:51:38

标签: php wordpress wordpress-theming thumbnails categories

是否有任何功能替代has_post_thumbnail中的wordpress

找不到任何内容,即使在codex中,我只需要在我的wordpress网站的类别摘要archive.php上显示任何帖子图片,只要它不是featured image

这有什么功能吗?

我的自定义模板中的loop如下:

<?php
if ( has_post_thumbnail() ) { ?>
<img class="postimg" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&amp;h=90&amp;w=165&amp;zc=1" alt="" />
<?php } else { ?>
<img class="postimg" src="<?php bloginfo('template_directory'); ?>/images/dummy.png" alt="" />
<?php } ?>

提前致谢

1 个答案:

答案 0 :(得分:1)

请检查以下链接,希望这对您有帮助......... Wordpress get attached images wordpress get attached images 2