simple-custom-post-order icon indicating copy to clipboard operation
simple-custom-post-order copied to clipboard

Question : Disable for search pages

Open JoshuaCrewe opened this issue 5 years ago • 1 comments

Menu order for posts is great, except when doing a search where we want most relevant results first.

Is there a way to disable this plugin functionality when just doing a search ?

JoshuaCrewe avatar May 01 '20 08:05 JoshuaCrewe

So far I have got :

function custom_pre_get_posts($wp_query) {
    if( is_admin() || ! $wp_query->is_main_query() ) {
        return;
    }

    if (is_search()) {
        $wp_query->set('orderby', 'relevance');
        $wp_query->set('order', 'DESC');
    }
}

add_action('pre_get_posts', 'custom_pre_get_posts');

JoshuaCrewe avatar May 01 '20 08:05 JoshuaCrewe