Risposte:
Per favore prova questo:
$args = array(
'category_name' => 'cat1',
'posts_per_page' => 5,
'orderby' => 'rand',
);
$pc = new WP_Query( $args );
dove 'rand'
dovrebbe darti un ordine casuale dei tuoi post.
Per maggiori informazioni, consulta il Codice sui parametri WP_Query
dell'ordine qui .