WP_Customize_Section::get_content() public WP 4.1.0
Get the section's content for insertion into the Customizer pane.
{} It's a method of the class: WP_Customize_Section{}
No Hooks.
Return
String. Contents of the section.
Usage
$WP_Customize_Section = new WP_Customize_Section(); $WP_Customize_Section->get_content();
Changelog
Since 4.1.0 | Introduced. |
Code of WP_Customize_Section::get_content() WP Customize Section::get content WP 5.6
final public function get_content() {
ob_start();
$this->maybe_render();
return trim( ob_get_clean() );
}