Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created August 12, 2014 07:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiR-DanieL/8ca1b1b33ab791836a59 to your computer and use it in GitHub Desktop.
Save SiR-DanieL/8ca1b1b33ab791836a59 to your computer and use it in GitHub Desktop.
Change post types to exclude from WP/WC searches by post content
function wc_filter_search_add_post_type( $array ) {
array_push( $array, 'your_post_type' );
array_push( $array, 'another_post_type' );
array_push( $array, 'etc' );
return array;
}
add_filter( 'wc_filter_search_not_allowed_array', 'wc_filter_search_add_post_type' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment