WP_Customize_Control::value( string $setting_key = 'default' ): mixed

Fetch a setting’s value.


Description

Grabs the main setting by default.


Top ↑

Parameters

$setting_key string Optional

Default: 'default'


Top ↑

Return

mixed The requested setting's value, if the setting exists.


Top ↑

Source

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

final public function value( $setting_key = 'default' ) {
	if ( isset( $this->settings[ $setting_key ] ) ) {
		return $this->settings[ $setting_key ]->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.