我想跳过所有没有缩略图的帖子。代码还不能正常工作。
实际上,该脚本不会显示没有缩略图的帖子 - 这很好,但在循环中,没有缩略图的帖子仍被视为帖子。
因此,例如,当我的 wordpress 数据库中有 10 个帖子时。我想展示其中的 5 个。但只有那些有缩略图的帖子。
<ul>
<?php
$args = array( 'numberposts' => 5,
'orderby' => 'date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish'
);
$my_posts = get_posts( $args );
global $post;
foreach( $my_posts as $post ) : setup_postdata($post);
if ( !has_post_thumbnail() ) {
continue;
} else {
?>
<li>
<div class="clearfix" >
<div class="thumb"><?php the_post_thumbnail('post-image-big'); ?></div>
<a href="<?php the_permalink(); ?>" class="title"><?php the_title(); ?></a>
<p class="category"><?php the_category(', '); ?></p>
</div>
</li>
<?php } ?>
<?php endforeach; ?>
</ul>