stuart-d
3/18/2015 - 12:10 PM

Projects Randomise Project Archive & Category Output

Projects Randomise Project Archive & Category Output

function custom_projects_randomise_project_output( $query ) {
    if ( is_admin() || ! $query->is_main_query() )
        return;
    if ( is_post_type_archive( 'project' ) || is_tax( 'project-category' )  ) {
        
        $query->set( 'order', 'ASC' );
        $query->set( 'orderby', 'rand' );

        return;
    }
}
add_action( 'pre_get_posts', 'custom_projects_randomise_project_output', 1 );