wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



add_option_update_handler › WordPress Function

Desde2.7.0
Obsoleto3.0.0
add_option_update_handler ( $option_group, $option_name, $sanitize_callback = '' )
Parâmetros: (3)
  • (string) $option_group A settings group name. Should correspond to an allowed option key name. Default allowed option key names include 'general', 'discussion', 'media', 'reading', 'writing', and 'options'.
    Required: Yes
  • (string) $option_name The name of an option to sanitize and save.
    Required: Yes
  • (callable) $sanitize_callback Optional. A callback function that sanitizes the option's value.
    Required: No
    Padrão: (empty)
Ver:
Definido em:
Codex:

Register a setting and its sanitization callback



Fonte

function add_option_update_handler( $option_group, $option_name, $sanitize_callback = '' ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'register_setting()' );
	register_setting( $option_group, $option_name, $sanitize_callback );
}