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