Wordpress随机发布内部循环

时间:2013-07-02 20:52:19

标签: wordpress while-loop

我正在使用while循环

while(have_posts()):the_post();

获取所有帖子并显示页面。如何随机化帖子。但问题是,在我正在处理的页面中没有“查询”的迹象。我也尝试使用一些提到但没有结果的解决方案。

1 个答案:

答案 0 :(得分:0)

您可以使用query_posts($args)以这种方式更改主查询:

// Alter the query
query_posts( 'orderby=RAND' );

while ( have_posts() ) : the_post();

    // Do your stuff inside the loop

endwhile;

// Reset the query
wp_reset_query();