Archived topic
Different Results
3 replies · Started by Den on June 30, 2022
Viewing posts 1–4 of 4
Hello Team,
I was checking out my competitor's website and found that every time a visitor reloads the category page, the website shows random and/or different results on the webpage. (I have dropped the link on Private information)
Can we do the same?
If yes, I'll be very happy if you suggest me how I can do that on my website.
Hi there.
add this PHP Snippet to your site:
add_action( 'pre_get_posts', function( $query ) {
if ( !is_admin() && $query->is_main_query() && $query->is_category() ) {
$query->set( 'orderby', 'rand' );
}
}, 100 );
This doc explains adding PHP:
Great !
Thanks David
You're welcome
This archived topic is closed to new replies.