如何指定子主题中REQUIRED_ONCE的路径? 时间:2020-07-18 作者:cilapo1541 我有一个名为“主题/子主题”的子主题文件夹,里面有一个dashboard\\u payments文件。php。在子主题文件夹下,我正在创建一个名为gateway的新文件夹,其中有一个config。php。那么,如何在dashboard\\u payments中执行require\\u once。php调用文件gateway/config。php?require\\u once或include行是什么样子的? 2 个回复 最合适的回答,由SO网友:Jacob Peattie 整理而成 自4.7起get_theme_file_path() 是要使用的正确功能:require_once get_theme_file_path( \'gateway/config.php\' ); SO网友:Ivan Shatsky 您可以使用require_once(get_stylesheet_directory() . \'/gateway/config.php\'); 或者(应该更快)require_once(__DIR__ . \'/gateway/config.php\'); 文章导航