标签: php wordpress phpstorm
我的WordPress主题文件夹路径设置如下:
define( 'theme_lib', get_template_directory() . '/inc');
我在我的functions.php中使用它:
require_once( theme_lib . '/setup.php');
PhpStorm无法解析实际路径,并发出未找到路径的警告。
它在运行时工作,但我应该如何让IDE识别包含路径?