Random order of the categories

Posted in: Newspaper
Post count: 14

Hello,

How can I insert random order within the categories?

Is very important for me!

Thank you

https://forum.tagdiv.com/topic/help-with-bbpress/

Post count: 780

Hi,

paste this in functins.php. You can paste one id or an array of id-s to the “is_category(ID)” function to make them random only on specific categories.

more info about is_category: http://codex.wordpress.org/Function_Reference/is_category


function exclude_category( $query ) {
    if ( $query->is_category() && $query->is_main_query() ) {
        $query->set( 'orderby', 'rand' );
    }
}
add_action( 'pre_get_posts', 'exclude_category' );
  • This reply was modified 12 years by Radu.
Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.