do_action( "customize_post_value_set_{$setting_id}", mixed $value, WP_Customize_Manager $manager )

Announces when a specific setting’s unsanitized post value has been set.


Description

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

The dynamic portion of the hook name, $setting_id, refers to the setting ID.


Top ↑

Parameters

$value mixed
Unsanitized setting post value.
$manager WP_Customize_Manager

Top ↑

Source

File: wp-includes/class-wp-customize-manager.php. View all references

do_action( "customize_post_value_set_{$setting_id}", $value, $this );


Top ↑

Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.