最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp query - Get authors list and sort them by recent posts

programmeradmin2浏览0评论

I have a authors list and its sorted in the alphabetical order. The query for it is here

$user_args = array(
    'orderby' => 'display_name',
    'order' => 'ASC',
    array( 'who' => 'authors' ),
    'has_published_posts' => array('post'),
    'number'    => 4,
);

$authors = new WP_User_Query( $user_args );

I need to change this list of authors to sort by ones with most recent posts first. How can that be done?

发布评论

评论列表(0)

  1. 暂无评论