WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about customize_changeset_save_data

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/class-wp-customize-manager.php apply_filters 2895 /**
* 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.
* }
*/

Hook Parameters

Parameter Type Name Description
array $data Updated changeset data, mapping setting IDs to arrays containing a $value item and optionally other metadata.
array $contex t {