WP_Customize_Manager::get_setting( string $id ): WP_Customize_Setting|void

Retrieves a customize setting.


Parameters

$id string Required
Customize Setting ID.

Top ↑

Return

WP_Customize_Setting|void The setting, if set.


Top ↑

Source

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

public function get_setting( $id ) {
	if ( isset( $this->settings[ $id ] ) ) {
		return $this->settings[ $id ];
	}
}


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.