remove_option_update_handler

函数
remove_option_update_handler ( $option_group, $option_name, $sanitize_callback = '' )
参数
  • (string) $option_group The settings group name used during registration.
    Required:
  • (string) $option_name The name of the option to unregister.
    Required:
  • (callable) $sanitize_callback Optional. Deprecated.
    Required:
    Default: (empty)
相关
  • unregister_setting()
定义位置
相关方法
add_option_update_handleroption_update_filterremove_option_whitelist_json_wp_die_handlersend_frame_options_header
引入
2.7.0
弃用
3.0.0

remove_option_update_handler: 这个函数用来删除WordPress中的一个选项更新处理器。选项更新处理程序是用来处理WordPress选项的更新: 这个函数需要两个参数:选项名称和要删除的回调函数。

取消注册一个设置

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

常见问题

FAQs
查看更多 >