WP_Customize_Nav_Menu_Auto_Add_Control::content_template()protectedWP 4.3.0

Render the Underscore template for this control.

Method of the class: WP_Customize_Nav_Menu_Auto_Add_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_Auto_Add_Control::content_template() code WP 6.5.2

<?php
protected function content_template() {
	?>
	<# var elementId = _.uniqueId( 'customize-nav-menu-auto-add-control-' ); #>
	<span class="customize-control-title"><?php _e( 'Menu Options' ); ?></span>
	<span class="customize-inside-control-row">
		<input id="{{ elementId }}" type="checkbox" class="auto_add" />
		<label for="{{ elementId }}">
			<?php _e( 'Automatically add new top-level pages to this menu' ); ?>
		</label>
	</span>
	<?php
}