我正在使用taxonomy_template my中的筛选器plugin 加载模板文件的步骤custom user taxonomies. 这是我正在使用的代码
add_filter( \'taxonomy_template\', \'get_custom_taxonomy_template\' );
function get_custom_taxonomy_template($template) {
$taxonomy = get_query_var(\'taxonomy\');
if (strpos($taxonomy,\'rcm_user_\') !== false) {
$taxonomy_template = UT_TEMPLATES_URL ."user-taxonomy-template.php";
$file_headers = @get_headers($taxonomy_template);
if( $file_headers[0] != \'HTTP/1.0 404 Not Found\'){
return $taxonomy_template;
}
}
return $template;
}
它加载文件,但wordpress函数出现致命错误,如
get_header(), _e()
我尝试使用默认主题,保存永久链接结构。