我仔细地按照这里的演练:http://codex.wordpress.org/Child_Themes 并将我的父头header.php完全复制到我的子主题中。
子主题按照预期出现在我的WP仪表板中,我能够激活它。定制的子style.css按预期实现。
在我的孩子header.php中,我使用'include_once'方法调用三个包含,在我的子主题的包含目录中找到:
<!-- Variables -->
<?php include_once('includes/vars.php'); ?>
<!-- /Variables -->
<!-- Social menu -->
<?php include_once('includes/social-menu.php'); ?>
<!-- /Social menu -->
<!-- LiveChat Button -->
<?php include_once('includes/livechat.html'); ?>
<!-- /LiveChat Button -->
尽管如此,我的标题未能生成三个包含中的任何一个。我想知道是否有一些我忽略的东西,或者我是否错误地实现了这个孩子header.php。
答案 0 :(得分:0)
尝试使用子主题文件夹的扩展路径,假设您的“includes”文件夹位于子主题目录中:
wp-content/themes/[child-theme-name]/includes/