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