WP_Customize_Control::get_content

Advertisement

Summery Summery

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

Syntax Syntax

WP_Customize_Control::get_content()

Return Return

(string) Contents of the control.

Source Source

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

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

Advertisement

Changelog Changelog

Changelog
Version Description
4.1.0 Introduced.

Advertisement

Leave a Reply