WP_Customize_Nav_Menu_Name_Control::content_template
Render the Underscore template for this control.
Method of the class: WP_Customize_Nav_Menu_Name_Control{}
No Hooks.
Returns
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() WP Customize Nav Menu Name Control::content template code WP 7.0
<?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
}