Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EnragedSuccubus/bfafab71757737700e46 to your computer and use it in GitHub Desktop.
Save EnragedSuccubus/bfafab71757737700e46 to your computer and use it in GitHub Desktop.
Adding Custom Post Types to Omnisearch in Jetpack
<?php
// Add our $post_type_name to Omnisearch!
if ( class_exists( 'Jetpack_Omnisearch_Posts' ) ) {
class CG_Post_Type_Omnisearch extends Jetpack_Omnisearch_Posts {
var $post_type = 'post-type-id-here';
}
new CG_Post_Type_Omnisearch;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment