按ID ASC排序在WordPress查询中不起作用

时间:2019-02-21 10:41:42

标签: wordpress

我已经尝试过但不能仅显示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 );

0 个答案:

没有答案