Hide custom post type from search based on custom taxonomy

admin2025-06-05  2

I'm looking to hide from search a few custom post type posts. I'm thinking that if I create a custom taxonomy for the custom post type with a term "hidden" then all posts checked will be hidden. Maybe some filter that I can add to the functions file? By chance has anyone done this or something similar? Please advise, thanks in advance :)

Regards, Kendell

I'm looking to hide from search a few custom post type posts. I'm thinking that if I create a custom taxonomy for the custom post type with a term "hidden" then all posts checked will be hidden. Maybe some filter that I can add to the functions file? By chance has anyone done this or something similar? Please advise, thanks in advance :)

Regards, Kendell

Share Improve this question asked Feb 25, 2018 at 0:28 Kendell DanielKendell Daniel 131 silver badge5 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 2

register_post_type() has a argument that you can set to specify which post types you want searched, thus excluded the undesired ones. This is the simplest method, just one line:

'exclude_from_search' = true,

Alternative to that, you can hook into the search query itself via pre_get_posts and then modify the search, specifying which post types you're after:

add_filter('pre_get_posts',function ($query) {
    if ($query->is_search && !is_admin() )
        $query->set('post_type',array('post','page'));
    return $query;
});

If you were dead set on doing the term hiding - although I don't recommend it, as it's more code with a higher chance of user error - you'd do somthing like:

add_action( 'pre_get_posts', function ( $query ) {
    global $wp_the_query;
    if($query === $wp_the_query && $query->is_search() && !is_admin()) {
        $tax_query = array(
            array(
                'taxonomy' => 'your_custom_tax_name',
                'field' => 'slug',
                'terms' => 'hidden',
                'operator' => 'NOT IN',
            )
        );
        $query->set( 'tax_query', $tax_query );
    }
});

For the sake of anyone else searching for a solution i used the SearchWP plugin to exclude these posts.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749116384a316501.html

最新回复(0)