I use the basic loop code in the taxonomy archive (artists), and I was wondering how you can set the loop to display messages in random order ('orderby' => 'rand'), it doesn't seem to work when I add an array? Any help would be great!
<?php
while ( have_posts() ) : the_post();
array ( 'orderby' => 'RAND' );
get_template_part( 'content', get_post_format() );
endwhile;
twentyfourteen_paging_nav();
else :
get_template_part( 'content', 'none' );
endif;
?>
source
share