Exportació i importació del personalitzador

Descripció

Exportació i importació del personalitzador

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.

Nou! Opcions d’exportació

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!

Com funciona?

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.

Exportació d’opcions personalitzades

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' );

Problemes coneguts

Actualment, aquesta extensió només funciona per a temes actius, no per temes que es visualitzen prèviament amb l’extensió Theme Test Drive o la nova vista prèvia del tema del personalitzador.

Contribuïu!

Ens encantaria escoltar els vostres comentaris sobre com podem millorar l’extensió Customizer Export/Import, o millor encara, veure els desenvolupadors de temes contribuir activament! No dubteu a fer-nos saber si esteu interessats a contribuir, ja que amb molt de gust tindrem altres persones a bord.

L’extensió Customizer Export/Import està a disponible gràcies a Beaver Builder.

Captures

  • Secció d’exportació/importació del personalitzador.

Instal·lació

  1. Instal·leu l’extensió Customizer Export/Import mitjançant el directori d’extensions del WordPress o carregant els fitxers al vostre servidor a wp-content/plugins.

  2. Després d’activar-se, la funcionalitat d’exportació/importació estarà disponible com a secció separada del personalitzador del WordPress.

PMF

Visiteu el nostre blog per obtenir més informació sobre l’extensió d’exportació i importació del personalitzador.

Ressenyes

21 de juliol de 2024
Exactly what we needed — Alante theme latest as of this date and WP 6.6. Thank you!
21 de maig de 2024 1 resposta
Whatever you change in Customizer, it exports the same data with no difference. [WordPress 6.5.3, Astra 4.6.14]
4 de febrer de 2024 1 resposta
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; //}
Llegiu totes les 110 ressenyes

Col·laboradors i desenvolupadors

«Exportació i importació del personalitzador» és programari de codi obert. La següent gent ha col·laborat en aquesta extensió.

Col·laboradors

“Exportació i importació del personalitzador” s’ha traduït a 25 configuracions regionals. Gràcies als traductors per les seves aportacions.

Traduïu «Exportació i importació del personalitzador» a la vostra llengua.

Interessats en el desenvolupament?

Navegueu pel codi, baixeu-vos el repositori SVN, o subscriviu-vos al registre de desenvolupament per fisl de subscripció RSS.

Registre de canvis

Version 0.1

  • Versió inicial.

Version 0.2

  • S’ha afegit el filtre cei_export_option_keys per exportar opcions personalitzades.

Version 0.3

  • Les opcions del personalitzador desades com a opcions ara s’exporten i importen.

Version 0.5

  • S’ha corregit un problema amb les càrregues al WordPress 4.7.1.

Version 0.6

  • Provant una altra solució per al problema amb les càrregues al 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