我使用它来获取Wordpress 3.2中帖子的所有附件的列表
$args = array(
'numberposts' => -1,
'post_status' => 'any',
'post_type' => 'attachment',
'orderby' => 'title',
'order' => 'ASC'
);
get_posts($args);
我在'orderby'参数中所做的任何事情都不会影响附件的显示顺序。你能按名称订购附件吗?按字母顺序?在Wordpress中
答案 0 :(得分:1)
尝试使用array_multisort()和'title'键对返回的数组进行排序。