Last active
August 29, 2015 14:15
-
-
Save thecodepoetry/19085f5d5ef0151930e3 to your computer and use it in GitHub Desktop.
remove benefits from search results
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this in your theme's functions.php