Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chered/53f3e7e86247ea9733a9d80f4ffb8698 to your computer and use it in GitHub Desktop.
Save chered/53f3e7e86247ea9733a9d80f4ffb8698 to your computer and use it in GitHub Desktop.
//seach template for coach cpt
function template_chooser($template) {
global $wp_query; $post_type = get_query_var('post_type');
if( $wp_query->is_search && $post_type == 'coach' ) {
return locate_template('page_coach.php');
} return $template;
} add_filter('template_include', 'template_chooser');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment