Silver Muru > Blog > 2017 > July

WordPress custom post type search result custom template

Code need to be added to theme function.php file

PHP
11 lines
1
2
3
4
5
6
7
8
9
10
11
function template_chooser($template)
{
global $wp_query;
$post_type = get_query_var('post_type');
if( $wp_query->is_search && $post_type == 'learn' )
{
return locate_template('archive-learn.php');
}
return $template;
}
add_filter('template_include', 'template_chooser');
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX