From 1b78eb0bb2249d28485bb09352dd3ac9a0cb98d2 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Thu, 5 Dec 2013 03:16:10 +0000 Subject: [PATCH] Twenty Fourteen: change sort order on Contributor template to put author with mosts posts at the top. Props iamtakashi, closes #26427; see #24863. Built from https://develop.svn.wordpress.org/trunk@26657 git-svn-id: http://core.svn.wordpress.org/trunk@26547 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfourteen/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-content/themes/twentyfourteen/functions.php b/wp-content/themes/twentyfourteen/functions.php index 12a8009bb9..d23c8cf4c7 100644 --- a/wp-content/themes/twentyfourteen/functions.php +++ b/wp-content/themes/twentyfourteen/functions.php @@ -359,6 +359,7 @@ function twentyfourteen_list_authors() { $contributor_ids = get_users( array( 'fields' => 'ID', 'orderby' => 'post_count', + 'order' => 'DESC', 'who' => 'authors', ) );