Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个while循环
while (have_posts()) : the_post();
获取所有帖子并显示页面。如何随机发布帖子。但问题是,在我正在处理的页面中没有“查询”的迹象。我也尝试使用提到的一些解决方案,但没有结果。
您可以通过以下方式更改主查询query_posts($args):
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();