我创建了新的帖子类型(酒店)和分类法(本地化)。
我想通过分类法的计数描述循环我的酒店订单。我想按本地化数量对我的酒店进行排序(我指的是从本地化中的更多酒店到更少酒店的订单)。
我尝试以下方法:
$args = array(
\'post_type\' => \'hotels\',
\'posts_per_page\' => -1,
\'tax_query\' => array(
array(
\'taxonomy\' => \'taxonomy_localisation\',
\'field\' => \'term_id\',
\'orderby\' => \'count\',
\'order\' => \'DESC\',
\'terms\' => $localisation_child->term_id,
),
),
);
是否可以使用WP\\u查询参数?