locate_template
只在主题中搜索模板然后要使用主题之外的文件,可以使用过滤器template_include
就像那样
add_filter("template_include", function ($template) {
$post = get_queried_object();
if ( is_single()
&& ("features" === $post->post_type)
) {
// absolute path to the template file
$template = __DIR__ . "/../../template/my_features_template.php";
}
return $template;
});