Pledge List: Change list order daily

Using a seed for the RAND function, based on the date, will randomize the list each day, while keeping the order consistent across any pagination.
This commit is contained in:
Kelly Dwan 2019-12-11 13:24:25 -05:00
parent bdbf6d573e
commit fe351ae6f8
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D

View file

@ -425,7 +425,8 @@ function filter_query( $query ) {
break;
default:
$query->set( 'orderby', 'rand' );
$date = date( 'Ymd' );
$query->set( 'orderby', "RAND($date)" );
break;
}
}