WP_Customize_Themes_Section::json() WordPress Method
The WP_Customize_Themes_Section::json() method is used to get the data for a themes section in JSON format. This data can be used to render the themes section in the Customizer.
WP_Customize_Themes_Section::json() #
Get section parameters for JS.
Return
(array) Exported parameters.
Source
File: wp-includes/customize/class-wp-customize-themes-section.php
public function json() {
$exported = parent::json();
$exported['action'] = $this->action;
$exported['filter_type'] = $this->filter_type;
return $exported;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.9.0 | Introduced. |