require_once localhost wordpress 函数错误
require_once localhost wordpress in functions error
已尝试过关于此主题的大多数建议答案,none 似乎对我有用。
我使用 MAMP 在我的本地主机上安装了一个 wordpress,现在在我的 functions.php 我正在尝试以下代码:
require_once('framework/functions/core-functions.php' );
我收到这个错误:
Warning: require_once(framework/functions/core-functions.php): failed to open stream: No such file or directory in /Applications/MAMP/htdocs/wordpress/wp-content/themes/mytheme/functions.php on line 443
Fatal error: require_once(): Failed opening required 'framework/functions/core-functions.php' (include_path='.:/Applications/MAMP/bin/php/php5.6.10/lib/php') in /Applications/MAMP/htdocs/wordpress/wp-content/themes/mytheme/functions.php on line 443
谢谢
首先将当前路径设置为变量,然后设置相对于该变量的路径。
$path = realpath(dirname(__FILE__));
require "$path/framework/functions/core-functions.php";
已尝试过关于此主题的大多数建议答案,none 似乎对我有用。
我使用 MAMP 在我的本地主机上安装了一个 wordpress,现在在我的 functions.php 我正在尝试以下代码:
require_once('framework/functions/core-functions.php' );
我收到这个错误:
Warning: require_once(framework/functions/core-functions.php): failed to open stream: No such file or directory in /Applications/MAMP/htdocs/wordpress/wp-content/themes/mytheme/functions.php on line 443
Fatal error: require_once(): Failed opening required 'framework/functions/core-functions.php' (include_path='.:/Applications/MAMP/bin/php/php5.6.10/lib/php') in /Applications/MAMP/htdocs/wordpress/wp-content/themes/mytheme/functions.php on line 443
谢谢
首先将当前路径设置为变量,然后设置相对于该变量的路径。
$path = realpath(dirname(__FILE__));
require "$path/framework/functions/core-functions.php";