让我们看一个我的 args 示例:
$args = array(
'orderby' . => $orderby,
'number' => $per_page,
'offset' => $offset,
'exclude' => array(),
'exclude_tree' => array(),
'include' => array(),
'fields' => 'all',
'hierarchical' => true,
'child_of' => 0,
'pad_counts' => false,
'offset' => $offset,
'terms' => $term->slug,
'cache_domain' => 'core'
);
如果我有一个这样的 term_meta 保存在数据库中
$yellow = get_term_meta($term->term_id,'product_yellow',true);
是否可以仅对带有黄色 term_meta 的分类法进行排序?