WP_Customize_Nav_Menu_Auto_Add_Control::content_template
Render the Underscore template for this control.
Method of the class: WP_Customize_Nav_Menu_Auto_Add_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_Auto_Add_Control::content_template() WP Customize Nav Menu Auto Add Control::content template code WP 7.0
<?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
}