WP_Customize_Nav_Menu_Name_Control::content_template()protectedWP 4.3.0

Render the Underscore template for this control.

Method of the class: WP_Customize_Nav_Menu_Name_Control{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Changelog

Since 4.3.0 Introduced.

WP_Customize_Nav_Menu_Name_Control::content_template() code WP 6.5.2

<?php
protected function content_template() {
	?>
	<label>
		<# if ( data.label ) { #>
			<span class="customize-control-title">{{ data.label }}</span>
		<# } #>
		<input type="text" class="menu-name-field live-update-section-title"
			<# if ( data.description ) { #>
				aria-describedby="{{ data.section }}-description"
			<# } #>
			/>
	</label>
	<# if ( data.description ) { #>
		<p id="{{ data.section }}-description">{{ data.description }}</p>
	<# } #>
	<?php
}