Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all articles
Browse latest Browse all 8245

Pete on "How to display archive.php posts in random order"

$
0
0

I have this archive.php template. It displays all the posts in the category. How can i display them in random order?

<?php if (have_posts()) : ?>
<h1 class="entry-title post-title widget-wrapper"><?php single_cat_title('',true); ?></h1>
<?php while (have_posts()) : the_post(); ?>
<?php the_title(); ?> -
<?php 		endwhile;
get_template_part( 'loop-nav' );
else :
get_template_part( 'loop-no-posts' );
endif;
?>

Viewing all articles
Browse latest Browse all 8245

Trending Articles