我为自定义帖子类型的所有文件添加了一个子目录。目前,它只有2个文件(archive.php和single.php),但是即使我选择single.php作为模板,每个请求都将发送到archive.php。
这是我的代码:
function customTaxonomieTemplate($template)
{
if(get_post_type() == "template")
{
if($_template = locate_template("template/archive.php"))
{
$template = $_template;
}
}
return $template;
}