Show posts in Category Archive Page in Random Order

I tried following code and it is working for me. Add this code in your functions.php file:

add_filter('pre_get_posts', 'pre_posts_order');
function pre_posts_order($wp_query){

  if( is_category() )   
    $wp_query->set( 'orderby' , 'rand' );
    
  return $wp_query;
}
This site uses cookies to offer you a better browsing experience. By browsing this website, you agree to our use of cookies.