您可以尝试添加
\'meta_key\' => \'_thumbnail_id\',
输入参数:
$args = array( \'numberposts\' => 5,
\'orderby\' => \'date\',
\'order\' => \'DESC\',
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'meta_key\' => \'_thumbnail_id\',
);
仅查询带有缩略图的帖子(即特色图片)。
ps: 代替此结构:
if ( !has_post_thumbnail() ) {
continue;
} else {
}
您可以在一般情况下使用
if ( has_post_thumbnail() ) {
}
但您现在可以跳过
if
-句子是循环中的一部分,因为您现在只获取带有特色图片的帖子。