Php Wordpress get_发布附件orderby

Php Wordpress get_发布附件orderby,php,wordpress,Php,Wordpress,我用它来获取Wordpress 3.2中帖子的所有附件列表 $args = array( 'numberposts' => -1, 'post_status' => 'any', 'post_type' => 'attachment', 'orderby' => 'title', 'order' => 'ASC' ); get_posts($args); 我在“orderby”参数中所做的任何操作

我用它来获取Wordpress 3.2中帖子的所有附件列表

 $args = array(
      'numberposts' => -1,
      'post_status' => 'any',
      'post_type' => 'attachment',
      'orderby' => 'title',
      'order' => 'ASC'
 );

 get_posts($args);

我在“orderby”参数中所做的任何操作都不会影响附件的显示顺序。你能按标题订购附件吗?字母顺序?在Wordpress中,尝试使用array_multisort()和“title”键对返回的数组进行排序