From fe351ae6f8c944bcf65c7a359b5fc5c20163c262 Mon Sep 17 00:00:00 2001 From: Kelly Dwan Date: Wed, 11 Dec 2019 13:24:25 -0500 Subject: [PATCH] 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. --- plugins/wporg-5ftf/includes/pledge.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/wporg-5ftf/includes/pledge.php b/plugins/wporg-5ftf/includes/pledge.php index 903cc17..79e451a 100755 --- a/plugins/wporg-5ftf/includes/pledge.php +++ b/plugins/wporg-5ftf/includes/pledge.php @@ -425,7 +425,8 @@ function filter_query( $query ) { break; default: - $query->set( 'orderby', 'rand' ); + $date = date( 'Ymd' ); + $query->set( 'orderby', "RAND($date)" ); break; } }