WordPress 儿童主题
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
令人困惑的是,您必须使用
STYLESHEETPATH
而不是TEMPLATEPATH
。Confusingly you have to use
STYLESHEETPATH
instead ofTEMPLATEPATH
.