Warning: This method has been deprecated. Deprecated in favor of update() method instead.

WP_Customize_Setting::_update_option() WordPress Method

The WP_Customize_Setting::_update_option() method is used to update the value of a setting in the database. This is the method that is called when a setting is updated via the WordPress customizer.

WP_Customize_Setting::_update_option() #

Deprecated method.


Source

File: wp-includes/class-wp-customize-setting.php

	protected function _update_option() {
		_deprecated_function( __METHOD__, '4.4.0', __CLASS__ . '::update()' );
	}


Top ↑

Changelog

Changelog
VersionDescription
4.4.0Deprecated in favor of update() method.
3.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.