Created
March 7, 2022 06:32
-
-
Save chered/53f3e7e86247ea9733a9d80f4ffb8698 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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