WP_Customize_Panel::get_content(): string

In this article

Get the panel’s content template for insertion into the Customizer pane.

Return

string Content for the panel.

Source

final public function get_content() {
	ob_start();
	$this->maybe_render();
	return trim( ob_get_clean() );
}

Changelog

VersionDescription
4.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.