只是一个新手问题,但我不知道如何处理这个错误。
警告: include_once(/home/u320415047/public_html/wp-content/themes/thestore/lib/thestore-metaboxes.php): 无法打开流:没有这样的文件或目录 /home/u320415047/public_html/wp-content/themes/thestore/functions.php 在第8行
警告:include_once():打开失败 '/home/u320415047/public_html/wp-content/themes/thestore/lib/thestore-metaboxes.php' 包含(include_path ='。:/ opt / php-5.5 / pear')in /home/u320415047/public_html/wp-content/themes/thestore/functions.php 在第8行
警告: include_once(/home/u320415047/public_html/wp-content/themes/thestore/lib/custom-config.php): 无法打开流:没有这样的文件或目录 /home/u320415047/public_html/wp-content/themes/thestore/functions.php 第9行
警告:include_once():打开失败 '/home/u320415047/public_html/wp-content/themes/thestore/lib/custom-config.php' 包含(include_path ='。:/ opt / php-5.5 / pear')in /home/u320415047/public_html/wp-content/themes/thestore/functions.php 第9行
答案 0 :(得分:0)
看起来您的主题部分已损坏或未正确上传。它告诉你,你错过了一些它试图包含的文件:
仔细检查那些文件是否存在,如果没有,请尝试重新安装主题
答案 1 :(得分:0)
在wordpress中,当你在functions.php中包含文件时,你必须使用内置的get_template_directory()函数引用正确的文件路径
include( get_template_directory() .'/file.php' );