Exclude Menu Items from search
-
How can i Exclude the menu items from search results?
I found this code but i can’t find the custom post type name and make it work
function update_my_custom_type() { global $wp_post_types; if ( post_type_exists( 'my-custom-type' ) ) { // exclude from search results $wp_post_types['my-custom-type']->exclude_from_search = true; } }
Can you help me with that?
Thnx in advance!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Exclude Menu Items from search’ is closed to new replies.