php - Wordpress – Random post order -
i want have random post order, not work: order of posts still by date
. can me?
http://inge.timrodenbroeker.de
<!-- t h e l o o p --> <?php query_posts(array('post_type' => 'post', 'orderby' => 'rand', 'posts_per_page' => -1)); ?> <?php if ( have_posts() ): $i = 0; ?> <?php while ( have_posts() ) : the_post(); $i++; ?> <div class="article-content <?php if ($i % 7 == 0) echo 'seventhclass'?>" id="post-<?php the_id(); ?>"> <div class="article-thumb"> <?php the_content(); ?> <!-- close article-thumb --> </div> <!-- close article-content --> </div> <?php endwhile; ?> <!-- /t h e l o o p -->
hmm...if check documentation function:
https://codex.wordpress.org/function_reference/query_posts
you'll see it's not recomended using pluging / themes, suggesting alternative methods.
Comments
Post a Comment