有没有办法查询前三篇文章,然后改变它们在首页上的显示方式?
我希望我的博客的前三篇文章能显示出与其他文章不同的内容,即它们将有完整的图片,而我的其他帖子只会有缩略图预览。
谢谢你在这件事上的任何帮助。
发布于 2013-04-09 01:44:33
您可以不单独查询前3篇文章的样式,只需检查循环中的位置,同时通过内置的current_post var输出每个帖子。
while( have_posts() ):
the_post();
// are we on the first page and outputting one of the first 3 posts?
if( !is_paged() && $wp_query->current_post < 3 ):
// output full image, etc..
else:
// not first page and not first 3 posts
// output just thumb, etc..
endif;
endwhile;https://wordpress.stackexchange.com/questions/95082
复制相似问题