Backup the Theme Mods in your Customizer with either a click or by triggering a function.
Feel free to play with your Theme Mods under “Appearance” > “Customizer” without worrying about losing your settings! When you are happy with your settings, just click the “Create Backup” button and you’ll always be able to revert to those exact settings in the future. You can even download the backups to make sure you save multiple copies in a safe place.
Or, if you want to develop your customizer locally and then automatically set up those options to match on your live site, simply download a Customizer Backup and Upload it to your live site. You could even send your Customizer settings to your friends or customers.
For Theme/Plugin Developers: This is also a way to create a “Theme within a Theme” – by allowing a single theme to have many different pre-set styles. For example, you could use an activation hook in a plugin to use a backup (in JSON format) and make plugins re-style a Theme. If your plugin does change the Customizer styles, you could also trigger an auto backup of the user’s current settings so that you don’t permanently erase any of the user’s settings.
This section describes how to install the plugin and get it working.
To generate a backup, go to “Appearance” > “Customizer Backups” and click “Generate Backup”.
To programmatically generate a backup of the current Customizer Settings (AKA: Theme Mods), use this code:
mp_backup_customizer( ‘This backup was created because of XYZ’ );
October 8, 2015
* Made the time() stored in a variable to make sure no delays happen while code is running. This was triggering an error in some rare situations.
April 4, 2015
* Changed text on button from “Create Customizer Backup” to the more accurate “Create/View Customizer Backups”.
April 4, 2015
* Made it so when you download a backup it auto downloads in a text file rather than just displaying the JSON on the screen.
April 1, 2015
* Original release