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
This commit is contained in:
parent
679fb7dddb
commit
49e03cf097
|
@ -359,6 +359,7 @@ function twentyfourteen_list_authors() {
|
||||||
$contributor_ids = get_users( array(
|
$contributor_ids = get_users( array(
|
||||||
'fields' => 'ID',
|
'fields' => 'ID',
|
||||||
'orderby' => 'post_count',
|
'orderby' => 'post_count',
|
||||||
|
'order' => 'DESC',
|
||||||
'who' => 'authors',
|
'who' => 'authors',
|
||||||
) );
|
) );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue