WP_Customize_Manager::settings() WordPress Method
The WP_Customize_Manager::settings() method is used to retrieve all of the Customizer's registered settings. The Customizer's settings are stored in a WP_Customize_Setting class instance.
WP_Customize_Manager::settings() #
Gets the registered settings.
Return
(array)
Source
File: wp-includes/class-wp-customize-manager.php
public function settings() {
return $this->settings;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |