Created
June 26, 2014 01:52
-
-
Save michael-cannon/8fc217199ae1e8d5eecb to your computer and use it in GitHub Desktop.
Filter tba_register_post_type_args
This file contains 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
add_filer( 'tba_register_post_type_args', 'my_tba_register_post_type_args' ); | |
function my_tba_register_post_type_args( $args ) { | |
$args['exclude_from_search'] = true; | |
return $args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment