我创建了一个主题,并使用此代码嵌入了redux框架
if ( !class_exists( 'ReduxFramework' ) && file_exists( dirname( __FILE__ ) . '/ReduxFramework/ReduxCore/framework.php' ) ) {
require_once( WPESTATE_PLUGIN_PATH . '/ReduxFramework/ReduxCore/framework.php' );
require_once( WPESTATE_PLUGIN_PATH. '/ReduxFramework/loader.php' );
}
if ( !isset( $redux_demo ) && file_exists( dirname( __FILE__ ) . '/ReduxFramework/sample/sample-config.php' ) ) {
require_once( WPESTATE_PLUGIN_PATH. '/ReduxFramework/admin-config.php' );
}
在主题文件中,我可以访问全局的$ opt_name,并且一切正常
之后,我创建了一个功能插件。在此插件中,我无法访问$ opt_name,可能是因为reduxframework尚未初始化。
我在这里Redux Framework not working when used in plugin读到我应该在插件内使用Redux :: init('opt_name')。但是,由于类Redux还不存在,因此尚不清楚。
我应该在after_setup_theme挂钩中使用它吗?最好的方法是什么? 谢谢
答案 0 :(得分:0)
简单的答案,请延迟您的访问,直到运行init钩子为止,否则...
Redux::init('opt_name');
这将告诉Redux立即加载面板。我确实警告过您,但是,如果您想将面板添加到loader.php以外的任何位置,那么您将很不走运。面板加载后,即会加载。您不能添加更多。 ;)