WP_Customize_Panel::get_content() WordPress Method
The WP_Customize_Panel::get_content() method is used to get the content for a panel. This method is called by the WP_Customize_Manager::print_template() method.
WP_Customize_Panel::get_content() #
Get the panel’s content template for insertion into the Customizer pane.
Return
(string) Content for the panel.
Source
File: wp-includes/class-wp-customize-panel.php
final public function get_content() { ob_start(); $this->maybe_render(); return trim( ob_get_clean() ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |