mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-07-10 04:25:44 +03:00
Pledge List: Add sorting by total contributor count
Allow sorting the pledge archive by total number of confirmed contributors.
This commit is contained in:
parent
e9aeb72c9b
commit
fea1621cf9
2 changed files with 9 additions and 0 deletions
|
@ -435,6 +435,12 @@ function filter_query( $query ) {
|
|||
$query->set( 'order', 'DESC' );
|
||||
break;
|
||||
|
||||
case 'contributors':
|
||||
$query->set( 'meta_key', $contributor_count_key );
|
||||
$query->set( 'orderby', 'meta_value_num' );
|
||||
$query->set( 'order', 'DESC' );
|
||||
break;
|
||||
|
||||
default:
|
||||
$query->set( 'orderby', 'rand' );
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue