From 49e03cf09786867d5bc1b3625e4fc136b98b515a Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Thu, 5 Dec 2013 03:15:47 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@26657 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfourteen/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-content/themes/twentyfourteen/functions.php b/src/wp-content/themes/twentyfourteen/functions.php index 12a8009bb9..d23c8cf4c7 100644 --- a/src/wp-content/themes/twentyfourteen/functions.php +++ b/src/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', ) );