Wordpress - 随机发布的订单

时间:2015-06-26 13:19:35

标签: php wordpress random posts

我想要一个随机的发布订单,但它不起作用:帖子的顺序仍为by date。你能救我吗?

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 -->  

1 个答案:

答案 0 :(得分:1)

嗯......如果你查看该功能的文档:

https://codex.wordpress.org/Function_Reference/query_posts

你会发现它不是从插入/主题中推荐使用它,而是建议使用替代方法。