WordPress 儿童主题

发布于 2024-08-20 07:57:30 字数 341 浏览 2 评论 0原文

我在 Single.php 文件中使用以下代码来根据用户正在查看的内容来显示不同的单个模板文件。

<?php
    if (in_category('Portfolio')) {
        include (TEMPLATEPATH . '/single-work.php');
    }
    elseif (in_category('Blog')) {
        include (TEMPLATEPATH . '/single-blog.php');
    }
?>

问题是我正在使用子主题,因此它将尝试包含父主题而不是子主题中的文件。我如何让它包含在子主题中?

I use the following code in my Single.php file to grab show a different single template file based on what the user is viewing.

<?php
    if (in_category('Portfolio')) {
        include (TEMPLATEPATH . '/single-work.php');
    }
    elseif (in_category('Blog')) {
        include (TEMPLATEPATH . '/single-blog.php');
    }
?>

The problem is that I am using Child Themes and therefore it will try to include files from the parent theme instead of the child theme. How do I get it to include from the child theme instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朱染 2024-08-27 07:57:30

令人困惑的是,您必须使用 STYLESHEETPATH 而不是 TEMPLATEPATH

Confusingly you have to use STYLESHEETPATH instead of TEMPLATEPATH.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文