WP_Customize_Control::get_contentpublicWP 4.1.0

Gets the control's content for insertion into the Customizer pane.

Метод класса: WP_Customize_Control{}

Хуков нет.

Возвращает

Строку. Contents of the control.

Использование

$WP_Customize_Control = new WP_Customize_Control();
$WP_Customize_Control->get_content();

Список изменений

С версии 4.1.0 Введена.

Код WP_Customize_Control::get_content() WP 7.0

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