Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Last active August 29, 2015 14:15
Show Gist options
  • Save thecodepoetry/19085f5d5ef0151930e3 to your computer and use it in GitHub Desktop.
Save thecodepoetry/19085f5d5ef0151930e3 to your computer and use it in GitHub Desktop.
remove benefits from search results
function remove_benefits_search() {
global $wp_post_types;
$wp_post_types['dt_benefits']->exclude_from_search = true;
}
add_filter('pre_get_posts','remove_benefits_search');
@thecodepoetry
Copy link
Author

Add this in your theme's functions.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment