Discover, trust, install: FAIR 1.0 is here

Plugin Banner

Customizer Export/Import

by Justin Busa

Version: 0.9.8

Download
Description

Customizer Export/Import

The Customizer Export/Import plugin allows you to export or import your WordPress customizer settings from directly within the customizer interface! If your theme makes use of the WordPress customizer for its settings, this plugin is for you!

Please visit our blog for more info on the Customizer Export/Import plugin.

New! Export Options

The Customizer Export/Import plugin previously only exported options saved as theme mods using the get_theme_mods function, but that is no more! The Customizer Export/Import plugin now exports settings saved as options as well!

How It Works

Exporting customizer settings is easy. Click the export button from within the customizer and a file will automatically begin downloading with your settings. Export files are named after your theme and can only be used to import settings for the theme or child theme that they came from. Export files contain a serialized dump of mods retrieved using the get_theme_mods function or customizer settings saved as options.

Importing customizer settings is just as easy. Choose the export file you would like to import, select whether you would like to download and import images (similar to importing posts), and finally, click the import button. Once your settings have been imported the page will refresh and your new design will be displayed.

Exporting Custom Options

Developers can also have arbitrary options that aren’t part of the customizer exported by using the cei_export_option_keys filter. Those options can be exported and imported by adding your option key to the array of options that will be exported as shown below.

function my_export_option_keys( $keys ) {
    $keys[] = 'my_option_key';
    $keys[] = 'another_option_key';
    return $keys;
}

add_filter( 'cei_export_option_keys', 'my_export_option_keys' );

Known Issues

This plugin currently only works for active themes, not themes that are being previewed with either the Theme Test Drive plugin or the new customizer theme preview.

Contribute!

We’d love to hear your feedback as to how we could improve the Customizer Export/Import plugin, or better yet, see theme developers actively contribute! Don’t hesitate to let us know if you’re interested in contributing as we would gladly have others on board.

The Customizer Export/Import plugin is brought to you by the fine folks at Beaver Builder.

  1. Install the Customizer Export/Import plugin either via the WordPress plugin directory, or by uploading the files to your server at wp-content/plugins.

  2. After activating, the export/import functionality will be available as a separate section within the WordPress customizer.

  1. The export/import customizer section.

    The export/import customizer section.

Please visit our blog for more info on the Customizer Export/Import plugin.

Huge Help

By andreispirea on January 22, 2025

Great plugin, worked perfectly. Probably it helped me save a few hours of customization. Thanks!

Perfect Thanks you so much

By commarketinguniteck on December 17, 2024

Perfect, I could export my theme settings to my child theme without any problem, in 2 minutes. That's a lot of waste time gained. Thanks you so much !
Very usefull I recommand.

Great Plugin

By paemark on October 15, 2024

Just perfect! Thank you.

Always works great!

By jaapmarcus on September 11, 2024

Works fine!

Perfect

By Lobby13 on July 21, 2024

Exactly what we needed -- Alante theme latest as of this date and WP 6.6. Thank you!

Not Working!

By emadfathy on May 21, 2024

Whatever you change in Customizer, it exports the same data with no difference.

[WordPress 6.5.3, Astra 4.6.14]

Does what I need it to

By Chris Lovie-Tyler (chrislt) on April 19, 2024

Thanks for making this plugin!

A small fixup

By spyrulis on February 4, 2024

Thanks for the awesome plugin, it saved me some hours.
I encountered a small problem that you can reproduce with the theme called Hestia, this theme doesn't appear to have the value “Template” at the beginning of its styles.css so moving the configs to a child theme didn't work.
I simply removed the lines around 300 in :
customizer-export-import/classes/class-cei-core.php

//if ( $data['template'] != $template ) {
//	$cei_error = __( 'Error importing settings! The settings you uploaded are not for the current theme.', 'customizer-export-import' );
//	return;
//}

I wonder why this is not included in the core

By cck23 on January 9, 2024

I wonder why this is not included in the core.
The developers did a good job!

Worked perfectly

By SRD75 on December 24, 2023

Thank you

Version 0.1

  • Initial release.

Version 0.2

  • Added cei_export_option_keys filter for exporting custom options.

Version 0.3

  • Customizer settings saved as options are now exported and imported.

Version 0.5

  • Fixed an issue with uploads in WordPress 4.7.1.

Version 0.6

  • Trying another fix for the issue with uploads in WordPress 4.7.1.

Version 0.7

  • Added support for exporting and importing custom CSS.

Version 0.8

  • Added support for option data that has an empty value.

Version 0.9

  • Allow options with widget or sidebar in their key to be exported.

Version 0.9.1

  • Fixed issue with slashes in plugin asset urls and S3. Props Huskynarr.

Version 0.9.4

  • Added callout for Assistant

Version 0.9.5

  • Fixed minor security issue

Version 0.9.6

  • Restrict uploads to users that can install plugins for better security.

Version 0.9.7.1

  • Fixed minor security issue

Version 0.9.7.2

  • Fixed mime type error

Version 0.9.7.3

  • Fixed mime type error again
  • Fixed non SSL links in plugin headers

Version 0.9.8

  • Trim unwanted whitespace from imported file.
  • Version:Version: 0.9.8
  • Active installs:Active installs: 200K
  • Last updated:Last updated: 8 months ago
  • Requires:Requires: 3.6
  • Tested:Tested: 6.7.2
Average rating:4.8 out of 5 stars.
  • Number of ratings: 107 ratings
  • Number of ratings: 1 ratings
  • Number of ratings: 0 ratings
  • Number of ratings: 0 ratings
  • Number of ratings: 5 ratings
Back to top