WP_Customize_Panel::get_content(): string

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


Return

string Content for the panel.


Top ↑

Source

File: wp-includes/class-wp-customize-panel.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
4.1.0 Introduced.

Top ↑

User Contributed Notes

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