WP_Customize_Control::get_content() WordPress Method

WP_Customize_Control::get_content() is a method used to display the content for a particular Customizer control. This method is called automatically by the Customizer when the control is being rendered.

WP_Customize_Control::get_content() #

Get the control’s content for insertion into the Customizer pane.


Return

(string) Contents of the control.


Top ↑

Source

File: wp-includes/class-wp-customize-control.php

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


Top ↑

Changelog

Changelog
VersionDescription
4.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.