Filter hook 'customize_changeset_save_data'
in WP Core File wp-includes/class-wp-customize-manager.php at line 2904
Description
Filters the settings' data that will be persisted into the changeset. Plugins may amend additional data (such as additional meta for settings) into the changeset with this filter. }
Occurrences
Filename |
Line Number |
wp-includes/class-wp-customize-manager.php |
2904 |
Parameters
Type |
Name |
Description |
array |
$data |
Updated changeset data, mapping setting IDs to arrays containing a $value item and optionally other metadata. |
array |
$context |
{ Filter context. |
PHP Doc
/**
* Filters the settings' data that will be persisted into the changeset.
*
* Plugins may amend additional data (such as additional meta for settings) into the changeset with this filter.
*
* @since 4.7.0
*
* @param array $data Updated changeset data, mapping setting IDs to arrays containing a $value item and optionally other metadata.
* @param array $context {
* Filter context.
*
* @type string $uuid Changeset UUID.
* @type string $title Requested title for the changeset post.
* @type string $status Requested status for the changeset post.
* @type string $date_gmt Requested date for the changeset post in MySQL format and GMT timezone.
* @type int|false $post_id Post ID for the changeset, or false if it doesn't exist yet.
* @type array $previous_data Previous data contained in the changeset.
* @type WP_Customize_Manager $manager Manager instance.
* }
*/