我不能百分之百确定您要求的具体顺序,但您只需要为“orderby”值指定一个关联数组。下面是一个示例:
$args = array(
\'post_type\' => \'brands\',
\'meta_query\' => array(
array(
\'key\' => \'br_type\',
\'value\' => \'Aviation\'
),
array(
\'key\' => \'br_category\'
),
array(
\'key\' => \'br_name\'
)
),
\'posts_per_page\' => -1,
\'orderby\' => [
\'br_category\' => \'ASC\',
\'br_name\' => \'ASC\',
\'br_type\' => \'ASC\'
],
\'order\' => \'ASC\',
\'fields\' => \'ids\'
);