Code need to be added to theme function.php file
1234567891011function 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');