do_action( 'customize_post_value_set', string $setting_id, mixed $value, WP_Customize_Manager $this )

Announce when any setting’s unsanitized post value has been set.


Description

Fires when the WP_Customize_Manager::set_post_value() method is called.

This is useful for WP_Customize_Setting instances to watch in order to update a cached previewed value.


Parameters

$setting_id

(string) Setting ID.

$value

(mixed) Unsanitized setting post value.

$this

(WP_Customize_Manager) WP_Customize_Manager instance.


Source

File: wp-includes/class-wp-customize-manager.php

View on GitHub



Changelog

Changelog
Version Description
WP-4.4.0 Introduced.