Redux的特点:
1、干净的代码库 干净的代码,每个模块都有注释,这样我们就可以花更少的时间构建选项页面和更多的时间做好我们的项目。 2、浏览器兼容 Redux已经精心重构,以确保最大的兼容性,无论用户使用任何浏览器都能正常工作。 3、高度灵活性扩展定制性 Redux有30多个字段类型和可用的选项,为你的项目提供一个真正强大和灵活的后台框架。 4、优秀的社区 Redux提供强大的社区支持,所有的字段都有详细的说明与使用。 5、100%开源 Redux集成到主题或插件中也相当的方便,几个步骤就可以拥有一个强大的后台选项面板:Redux Framework使用举例
1、在主题目录下新建一个framework(名称可任意填写)文件夹,将redux-framework-master插件目录下的ReduxCore文件夹拷贝到主题目录下的framework文件夹下 2、将redux-framework/sample目录下的sample-config.php这个文件拷贝到admin文件夹下,重命名为config.php 3、将以下代码添加到主题functions.php中 [cc lang="php"] /* *载入Redux Framework */ if ( !class_exists( 'ReduxFramework' ) && file_exists( dirname( __FILE__ ) . '/framework/ReduxCore/framework.php' ) ) { require_once( dirname( __FILE__ ) . '/framework/ReduxCore/framework.php' ); } if ( file_exists( dirname( __FILE__ ) . '/framework/config.php' ) ) { require_once( dirname( __FILE__ ) . '/framework/config.php' ); } [/cc]Bwp主题后台框架Redux Framework展示
Redux Framework功能太强大,只有你想不到的,没有它不能实现的,它是开源的,支持你无限的创作与开发。 Redux 官方网站:http://reduxframework.com/ Redux 下载地址:https://codeload.github.com/reduxframework/redux-framework/zip/master 本文转载自http://www.511yj.com/wordpress-redux-framework.html如需转载请保留本文出处: https://www.zhe94.com/351.html