$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Hide custom post type from search based on custom taxonomy|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Hide custom post type from search based on custom taxonomy

matteradmin8PV0评论

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.

Post a comment

comment list (0)

  1. No comments so far