admin管理员组

文章数量:1293920

Is there any way to get this

<?php 
$pc = new WP_Query ('category_name=cat1&posts_per_page=5'); 
?> 

but each time display a RANDOM different batch of 5 ones?

Is there any way to get this

<?php 
$pc = new WP_Query ('category_name=cat1&posts_per_page=5'); 
?> 

but each time display a RANDOM different batch of 5 ones?

Share Improve this question edited Sep 21, 2013 at 22:45 fuxia 107k38 gold badges255 silver badges459 bronze badges asked Sep 21, 2013 at 20:53 qaedusqaedus 4112 gold badges5 silver badges7 bronze badges 1
  • 1 note that rand order is very expensive on the database – Tom J Nowell Commented Apr 27, 2021 at 17:41
Add a comment  | 

1 Answer 1

Reset to default 41

Please try this:

$args = array(
    'category_name'  => 'cat1',
    'posts_per_page' => 5,
    'orderby'        => 'rand',
);

$pc = new WP_Query( $args ); 

where 'rand' should give you a random order of your posts.

For more info check out the Codex on WP_Query order parameters here.

本文标签: wp queryWPQueryrandom