随机自定义邮寄类型标题

时间:2012-03-06 作者:Terrell Anderson

因此,我从这里的另一个问题中找到了下面的代码,它显示了自定义帖子类型的标题列表,我的问题是,如何使列表随机化?

      <?php
 $queryObject = new WP_Query( \'post_type=announcements&posts_per_page=5\' );
 // The Loop!if ($queryObject->have_posts()) {
?>
<ul>
<?php
while ($queryObject->have_posts()) {
    $queryObject->the_post();
    ?>

    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
}
?>
</ul>
<?php
 }
 ?>

1 个回复
最合适的回答,由SO网友:mor7ifer 整理而成

WP_Query 具有orderby 可设置为的属性rand. 如果将查询字符串更改为\'post_type=announcements&posts_per_page=5&orderby=rand\' 你应该可以走了。你可能想花点时间通读一遍the whole documentation for WP_Query, 只是为了让您熟悉它的功能。

结束

相关推荐