子目录中的WordPress自定义帖子类型单个模板不起作用

时间:2018-09-23 15:04:21

标签: wordpress subdirectory

我为自定义帖子类型的所有文件添加了一个子目录。目前,它只有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;
}

0 个答案:

没有答案