WP_Customize_Control::render()protectedWP 3.4.0

Renders the control wrapper and calls $this->render_content() for the internals.

Method of the class: WP_Customize_Control{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->render();

Changelog

Since 3.4.0 Introduced.

WP_Customize_Control::render() code WP 6.5.2

protected function render() {
	$id    = 'customize-control-' . str_replace( array( '[', ']' ), array( '-', '' ), $this->id );
	$class = 'customize-control customize-control-' . $this->type;

	printf( '<li id="%s" class="%s">', esc_attr( $id ), esc_attr( $class ) );
	$this->render_content();
	echo '</li>';
}