我正在尝试获取过去24小时内标记最多标记的分类标准列表。例如:
来自分类国家的中国被标记了20次 来自分类音乐的Eminem被标记了15次 来自分类足球的切尔西被标记了10次 来自分类国家的美国已被标记了12次结果应该显示如下列表:China Eminem USA Chelsea
我最终得到了这个:
<?php $terms = get_terms( array(
'taxonomy' => 'country','music','football',
'orderby' => 'count',
'monthnum' => date('m'),
'day' => date('d'),
'year' => date('Y')
);
$loop = new WP_Query($args);
if ($loop->have_posts()) :
while ($loop->have_posts()) : $loop->the_post(); ?>