Get the section’s content for insertion into the Customizer pane.
Source
final public function get_content() {
ob_start();
$this->maybe_render();
return trim( ob_get_clean() );
}
Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |
CARVIEW |
Get the section’s content for insertion into the Customizer pane.
final public function get_content() {
ob_start();
$this->maybe_render();
return trim( ob_get_clean() );
}
Uses | Description |
---|---|
WP_Customize_Section::maybe_render()wp-includes/class-wp-customize-section.php | Check capabilities and render the section. |
Used by | Description |
---|---|
WP_Customize_Section::json()wp-includes/class-wp-customize-section.php | Gather the parameters passed to client JavaScript via JSON. |
Version | Description |
---|---|
4.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.