customize_post_value_set
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
do_action( 'customize_post_value_set', string $setting_id, mixed $value, WP_Customize_Manager $manager )
Описание
Русский перевод этого описания пока проверяется. Показан оригинал.
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.
Параметры
$setting_id
string
обязательный
$value
mixed
обязательный
$manager
WP_Customize_Manager
обязательный
Исходный код
wp-includes/class-wp-customize-manager.php:1898
do_action( 'customize_post_value_set', $setting_id, $value, $this );
История изменений
| Версия | Описание |
|---|---|
| 4.4.0 | Introduced. |

