我在每个帖子中添加了自定义字段post_views_count
以跟踪帖子查看次数,它可以正常运行。但是我还需要显示所有分类法类别,按照最受欢迎的帖子查看计数,这是我的代码,但似乎它根本不起作用:
$args = array(
'hide_empty' => true,
'fields' => 'all',
'hierarchical' => true,
'child_of' => 0,
'get' => '',
'name__like' => '',
'pad_counts' => false,
'taxonomy' => 'video-category',
'cache_domain' => 'core',
'meta_key' => 'post_views_count',
'orderby' => 'meta_value_num',
);
$terms = get_terms('video-category', $args);