我已经尝试过但不能仅显示DESC顺序,这是怎么回事,请帮助
if( $terms ) :
foreach( $terms as $term ) :
$arg = array(
'post_type' => 'post',
'posts_per_page' =>-1,
'post_status' => 'publish',
'tax_query' =>array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array($term->name)
)
),
'orderby' => 'ID',
'order' => 'ASC'
);
$tthe_query = new WP_Query( $arg );