Skip to content

Instantly share code, notes, and snippets.

@michael-cannon
Created September 9, 2013 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michael-cannon/6490357 to your computer and use it in GitHub Desktop.
Save michael-cannon/6490357 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cbqe_get_post_types_args', array( $this, 'get_post_types_args' ) );
public function get_post_types_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