Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created October 13, 2020 07:25
Show Gist options
  • Select an option

  • Save yousufansa/1c71b3e7fdfe84e03a385f9a591155be to your computer and use it in GitHub Desktop.

Select an option

Save yousufansa/1c71b3e7fdfe84e03a385f9a591155be to your computer and use it in GitHub Desktop.
Vodi - Add Persons as Search Result Tab
if ( ! function_exists( 'vodi_child_include_persons_as_search_result_tab' ) ) {
function vodi_child_include_persons_as_search_result_tab( $post_types ) {
$post_types[] = 'person';
return $post_types;
}
}
add_filter( 'vodi_display_search_result_page_tab_post_types', 'vodi_child_include_persons_as_search_result_tab' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment