Skip to content

Instantly share code, notes, and snippets.

@alanef
Created June 6, 2022 19:39
Show Gist options
  • Select an option

  • Save alanef/9dcec4e26263e7dbb4c9a68770106839 to your computer and use it in GitHub Desktop.

Select an option

Save alanef/9dcec4e26263e7dbb4c9a68770106839 to your computer and use it in GitHub Desktop.
Random shuffle front end posts
<?php
if ( ! is_admin() ) { // only do on frontend
add_filter(
'posts_results',
function ( $posts ) {
shuffle( $posts ); // use php random shuffle
return $posts;
},
10,
1
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment