Gets the control’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 |
Gets the control’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_Control::maybe_render()wp-includes/class-wp-customize-control.php | Checks capabilities and render the control. |
Used by | Description |
---|---|
WP_Customize_Control::to_json()wp-includes/class-wp-customize-control.php | Refreshes the parameters passed to the 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.