WordPress儿童主题包括包含文件

我正在使用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文件而不会产生上述错误。

你可以使用get_template_part函数

更改

 require_once( get_stylesheet_directory_uri() . "/includes/home-slider.php" ); 

 get_template_part(includes/home-slider); 

不要将home-slider.php文件从父主题移动到子主题。 将此文件的副本复制到子主题文件夹中,然后在此文件中执行您要执行的操作。 它将覆盖父文件的function。

有关儿童主题的更多信息,请阅读: codex.wordpress.org/child-theme

Mo’men在上面是正确的。 OP请将他标记为正确答案。 唯一的错误是他忽略用’包围文件路径。

get_template_part( ‘包括/家庭滑块’);