我已经从我的Wordpress循环中定义的类别中找到了4个帖子的列表,id就像能够随机化它们,只是将已经检索到的4个(最近的)随机化,而不是从整个类别。
我尝试了以下内容,但只是显示了该类别中的4个随机帖子,并没有将前4个随机化,因为它们是最近的4个。
//get terms (category ids 11,2,33,34), then display one post in each term
$taxonomy = 'category';// e.g. post_tag, category
$param_type = 'category__in'; // e.g. tag__in, category__in
$term_args=array(
'include' => '1459',
);
$terms = get_terms($taxonomy,$term_args);
if ($terms) {
foreach( $terms as $term ) {
$args=array(
"$param_type" => array($term->term_id),
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 4,
'orderby' => 'rand',
'order' => 'DESC'
);
$my_query = null;
$my_query = new WP_Query($args);
答案 0 :(得分:0)
数组中有4个元素:
$categories = [
[], [], [], []
];
要以随机顺序制作,请使用shuffle()
功能
shuffle($categories); // modifies original array, returns true/false
foreach ($categories as $category) {
echo 'WooHoo';
}
答案 1 :(得分:0)
删除'order' => 'DESC'
部分。