Skip to content

Instantly share code, notes, and snippets.

@danfisher85
Created April 22, 2015 22:09
Show Gist options
  • Save danfisher85/6e9de8185f86771b1a9b to your computer and use it in GitHub Desktop.
Save danfisher85/6e9de8185f86771b1a9b to your computer and use it in GitHub Desktop.
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