Action hook 'customize_save_validation_before'
in WP Core File wp-includes/class-wp-customize-manager.php at line 2779
Description
Fires before save validation happens. Plugins can add just-in-time {@see 'customize_validate_{$this->ID}'} filters at this point to catch any settings registered after `customize_register`. The dynamic portion of the hook name, `$this->ID` refers to the setting ID.
Occurrences
Filename |
Line Number |
wp-includes/class-wp-customize-manager.php |
2779 |
Parameters
Type |
Name |
Description |
WP_Customize_Manager |
$manager |
WP_Customize_Manager instance. |
PHP Doc
/**
* Fires before save validation happens.
*
* Plugins can add just-in-time {@see 'customize_validate_{$this->ID}'} filters
* at this point to catch any settings registered after `customize_register`.
* The dynamic portion of the hook name, `$this->ID` refers to the setting ID.
*
* @since 4.6.0
*
* @param WP_Customize_Manager $manager WP_Customize_Manager instance.
*/