Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | Customizer Export/Import |
Version | 0.5 |
Comparing to | |
See all releases |
Code changes from version 0.4 to 0.5
- classes/class-cei-core.php +1 -1
- customizer-export-import.php +2 -2
- readme.txt +1 -1
classes/class-cei-core.php
CHANGED
@@ -238,7 +238,7 @@ final class CEI_Core {
|
|
238 |
// Setup internal vars.
|
239 |
$cei_error = false;
|
240 |
$template = get_template();
|
241 |
-
$overrides = array( 'test_form' => FALSE, 'mimes' => array('dat' => 'text/
|
242 |
$file = wp_handle_upload( $_FILES['cei-import-file'], $overrides );
|
243 |
|
244 |
// Make sure we have an uploaded file.
|
238 |
// Setup internal vars.
|
239 |
$cei_error = false;
|
240 |
$template = get_template();
|
241 |
+
$overrides = array( 'test_form' => FALSE, 'mimes' => array('dat' => 'text/plain') );
|
242 |
$file = wp_handle_upload( $_FILES['cei-import-file'], $overrides );
|
243 |
|
244 |
// Make sure we have an uploaded file.
|
customizer-export-import.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* Plugin Name: Customizer Export/Import
|
4 |
* Plugin URI: http://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.
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://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: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
* Text Domain: customizer-export-import
|
12 |
*/
|
13 |
-
define( 'CEI_VERSION', '0.
|
14 |
define( 'CEI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
15 |
define( 'CEI_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
16 |
|
3 |
* Plugin Name: Customizer Export/Import
|
4 |
* Plugin URI: http://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.5
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://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: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
* Text Domain: customizer-export-import
|
12 |
*/
|
13 |
+
define( 'CEI_VERSION', '0.5' );
|
14 |
define( 'CEI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
15 |
define( 'CEI_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
16 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: justinbusa
|
3 |
Tags: customizer, customizer export, customizer import, export, import, settings, customizer settings, theme settings, theme options
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to: 4.
|
6 |
Stable tag: trunk
|
7 |
License: GPL2+
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
2 |
Contributors: justinbusa
|
3 |
Tags: customizer, customizer export, customizer import, export, import, settings, customizer settings, theme settings, theme options
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 4.7.1
|
6 |
Stable tag: trunk
|
7 |
License: GPL2+
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|