{"id":3771,"date":"2022-09-06T14:27:45","date_gmt":"2022-09-06T14:27:45","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3771"},"modified":"2022-09-10T20:44:53","modified_gmt":"2022-09-10T20:44:53","slug":"exclude-categories-from-search-in-wordpress","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/exclude-categories-from-search-in-wordpress\/","title":{"rendered":"Exclude Categories from Search in WordPress"},"content":{"rendered":"\n<p>Insert the code snippet into your theme&#8217;s functions.php, a helper file, or a functionality plugin to exclude specific categories from being displayed in WordPress search results. Apply the following code snippet to your theme&#8217;s functions.php, included helper functions, or a functionality plugin.<\/p>\n\n\n\n<p>X where X is the number\/ID of your category, comma separated for multiple. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function SearchFilter($query) {\n    if ($query-&gt;is_search) {\n        $query-&gt;set('cat','-X');\n    }\n    return $query;\n}\nadd_filter('pre_get_posts','SearchFilter');<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Insert the code snippet into your theme&#8217;s functions.php, a helper file, or a functionality plugin to exclude specific categories from being displayed in WordPress search results. Apply the following code snippet to your theme&#8217;s functions.php, included helper functions, or a functionality plugin. X where X is the number\/ID of your category, comma separated for multiple.<\/p>\n","protected":false},"author":1,"featured_media":3806,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":1,"wds_primary_category":56,"footnotes":""},"categories":[56],"tags":[72,76,84],"class_list":{"0":"post-3771","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"tag-categories","9":"tag-exclude","10":"tag-wp-core","11":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/matrix-source-code-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/matrix-source-code-600x600.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3771","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3771"}],"version-history":[{"count":3,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3771\/revisions"}],"predecessor-version":[{"id":3782,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3771\/revisions\/3782"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3806"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3771"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3771"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3771"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}