我有一个名为“Milo Books”的自定义帖子类型和一个名为“Featured”的类别,ID为“100”。
我想运行一个查询,从主页上的这个类别中提取帖子,但随机的,我似乎无法让它工作。谁能帮帮我吗。
<?php
$args = array(
\'post_type\' => \'milo-books\',
\'cat\' => 100,
\'show_posts\' => 1,
\'posts_per_page\' => 1,
\'orderby\' => \'RAND\'
);
$the_query = new WP_Query( $args );
?>
<?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2>Featured Title</h2>
<div class="featured-content-container">
</div><!--End Featured Content Container-->
它只显示我的一篇帖子。在我的自定义帖子类型中,我已经设置了3篇带有特色类别的帖子。
我错过什么了吗?因为如果我将posts\\u per\\u页面更改为3,它会显示所有这三个页面,以便在该类别中识别它们。只是无法让它们随机显示。
干杯
丹