customizer-export-import
Last commit date
classes
1 year ago
css
1 year ago
includes
1 year ago
js
1 year ago
README.md
1 year ago
customizer-export-import.php
1 year ago
readme.txt
2 weeks ago
customizer-export-import.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Plugin Name: Customizer Export/Import |
| 4 | * Plugin URI: https://www.wpbeaverbuilder.com/wordpress-customizer-export-import-plugin/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page |
| 5 | * Description: Adds settings export and import functionality to the WordPress customizer. |
| 6 | * Version: 0.9.8 |
| 7 | * Author: The Beaver Builder Team |
| 8 | * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page |
| 9 | * License: GNU General Public License v2.0 |
| 10 | * License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 11 | * Text Domain: customizer-export-import |
| 12 | */ |
| 13 | define( 'CEI_VERSION', '0.9.8' ); |
| 14 | define( 'CEI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); |
| 15 | define( 'CEI_PLUGIN_URL', plugins_url( '/', __FILE__ ) ); |
| 16 | |
| 17 | /* Classes */ |
| 18 | require_once CEI_PLUGIN_DIR . 'classes/class-cei-core.php'; |
| 19 | |
| 20 | /* Actions */ |
| 21 | add_action( 'plugins_loaded', 'CEI_Core::load_plugin_textdomain' ); |
| 22 | add_action( 'customize_controls_print_scripts', 'CEI_Core::controls_print_scripts' ); |
| 23 | add_action( 'customize_controls_enqueue_scripts', 'CEI_Core::controls_enqueue_scripts' ); |
| 24 | add_action( 'customize_register', 'CEI_Core::init', 999999 ); |
| 25 | add_action( 'customize_register', 'CEI_Core::register' ); |
| 26 | |
| 27 |