我想知道这是否可能,或者是否有其他更好的方式来做事。Google foo没有帮助。
所以,我有两个插件,aa前端和aa站点。我需要在aa站点/插件中定义一个常量或变量。php并在aa前端/文件夹/somefile中使用它。php。
已试用:
function site_wp_features(){
define(\'AA_PLUGIN_GUTENBERG\', false);
}
add_action(\'plugins_loaded\', \'site_wp_features\', 0)
但我得到:
Warning: Use of undefined constant AA_PLUGIN_GUTENBERG
有什么想法吗?