wordpress - 如果他们有缩略图,请获取帖子

时间:2014-04-08 21:00:25

标签: php wordpress

谁知道,我怎么才能获得帖子,什么有缩略图? 我在WP文档中没有找到任何内容。请帮忙! get_posts()的过滤器不包括缩略图。

2 个答案:

答案 0 :(得分:1)

这应该有效:

<?php 
   $loop = new WP_Query( array('meta_key' => '_thumbnail_id', 'post_type' => 'post')); 
   while($loop->have_posts()) : $loop->the_post(); 
?>
<h2><?php the_title(); ?></h2>
<?php the_post_thumbnail(); ?>
<?php endwhile; ?>

这将返回附有缩略图(特色图片)的所有posts

答案 1 :(得分:0)

您可以使用has_post_thumbnail( $post_id );

检查帖子是否有拇指

示例:

<?php
while ( have_posts() ) : the_post();
if(has_post_thumbnail( the_ID )) {
 #code....
}
endwhile;
?>

<强> Function Reference/has post thumbnail