require_once not working

时间:2015-10-07 作者:user3098728

我有一个自定义页面模板,这个模板需要包含一个php文件。我试着把这个脚本

require(\'.../hc-v2-child/ayah.php\') and this require(__DIR__.\'ayah.php\');
在函数中。php和自定义页面模板中,但我得到了这个错误

[07-Oct-2015 04:15:21 UTC] PHP Fatal error:  require_once(): Failed opening required \'/folder/folder1/public_html/folde3/wp-content/themes/hc-v2-childayah.php\' (include_path=\'.:/usr/php/54/usr/lib64:/usr/php/54/usr/share/pear\') in /folder/folder1/public_html/folde3/wp-content/themes/hc-v2-child/page-mylogin.php on line 51

1 个回复
最合适的回答,由SO网友:sbounty 整理而成

如果要包含的文件位于子主题文件夹中,请尝试以下操作:

require(get_stylesheet_directory_uri().\'/ayah.php\');