我正在使用它来获取Wordpress 3.2中一篇文章的所有附件的列表
$args = array(
'numberposts' => -1,
'post_status' => 'any',
'post_type' => 'attachment',
'orderby' => 'title',
'order' => 'ASC'
);
get_posts($args);我在'orderby‘参数中所做的任何事情都不会对附件的显示顺序产生任何影响。你能按标题排序附件吗?按字母顺序排列?在Wordpress中
发布于 2012-01-10 15:44:49
尝试使用array_multisort()和'title‘键对返回的数组进行排序。
https://stackoverflow.com/questions/8796265
复制相似问题