WP_Customize_Setting::post_value( mixed $default_value = null ): mixed

Fetch and sanitize the $_POST value for the setting.


Description

During a save request prior to save, post_value() provides the new value while value() does not.


Top ↑

Parameters

$default_value mixed Optional
A default value which is used as a fallback.

Default: null


Top ↑

Return

mixed The default value on failure, otherwise the sanitized and validated value.


Top ↑

Source

File: wp-includes/class-wp-customize-setting.php. View all references

final public function post_value( $default_value = null ) {
	return $this->manager->post_value( $this, $default_value );
}


Top ↑

Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.