Created
April 22, 2015 22:09
-
-
Save danfisher85/6e9de8185f86771b1a9b to your computer and use it in GitHub Desktop.
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
| add_filter( 'register_post_type_resume', 'post_type_resume', 10, 1 ); | |
| function post_type_resume( $args ) { | |
| $args[ 'exclude_from_search' ] = false; | |
| return $args; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment