查询前3个帖子以更改外观

时间:2013-04-09 作者:Romes

有没有办法查询前三篇最近的帖子,然后更改它们在首页上的显示方式?

我希望我博客的前三篇文章与其他文章的显示方式有所不同,即它们会有完整的图像,而我的其他文章只会有缩略图预览。

谢谢你在这件事上的帮助。

1 个回复
最合适的回答,由SO网友:Milo 整理而成

您可以为前3篇文章设置不同的样式,而无需单独查询它们,您只需在通过内置current_post 变量。

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;

结束