我正在使用AMPPS作为本地主机在本地计算机上进行 WordPress 设置。使用Delta主题我创建了一个子主题(delta2-child)。初始设置很有效。但是,我需要更改名为home-slider.php的includes文件夹中的文件。
原始文件的位置:
c:\Program Files (x86)\Ampps\www\armstrong\wp-content\themes\delta\includes\home-slider.php
子主题文件的位置:
c:\Program Files (x86)\Ampps\www\armstrong\wp-content\themes\delta2-child\includes\home-slider.php
如果我将home-slider文件移动到Child Theme文件夹[delta2-child \ includes \ home-slider.php],主题仍会使用Parent Themes主页滑块文件。
如果我将以下内容添加到CT的functions.php文件中:
require_once( get_stylesheet_directory_uri() . "/includes/home-slider.php" ); */
我收到以下错误:
Warning: require_once(C:\Program Files (x86)\Ampps\www\armstrong/wp-content/themes/delta/includes/home-slider.php) [function.require-once]: failed to open stream: No such file or directory in C:\Program Files (x86)\Ampps\www\armstrong\wp-content\themes\delta2-child\header.php on line 87
Fatal error: require_once() [function.require]: Failed opening required 'C:\Program Files (x86)\Ampps\www\armstrong/wp-content/themes/delta/includes/home-slider.php' (include_path='.;C:\php\pear') in C:\Program Files (x86)\Ampps\www\armstrong\wp-content\themes\delta2-child\header.php on line 87
任何知识渊博的灵魂都能告诉我如何在不产生上述错误的情况下参考home-slider文件。
答案 0 :(得分:4)
您可以使用get_template_part功能
更改
require_once( get_stylesheet_directory_uri() . "/includes/home-slider.php" );
到
get_template_part('includes/home-slider');
答案 1 :(得分:0)
不要将home-slider.php文件从父主题移动到子主题。将此文件的副本复制到子主题文件夹中,然后在此文件中执行您要执行的操作。它将覆盖父文件的功能。
有关儿童主题的更多信息,请阅读:codex.wordpress.org/child-theme
答案 2 :(得分:0)
Mo'men上面是正确的。 OP请将他标记为正确答案。唯一的错误是他忽略了用'。
包围文件路径get_template_part( '包括/家庭滑块');