Get the panel’s content template 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 panel’s content template 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_Panel::maybe_render()wp-includes/class-wp-customize-panel.php | Check capabilities and render the panel. |
Used by | Description |
---|---|
WP_Customize_Panel::json()wp-includes/class-wp-customize-panel.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.