WP_Customize_New_Menu_Control::render_content()publicWP 4.3.0

Deprecated from version 4.9.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Render the control's content.

Method of the class: WP_Customize_New_Menu_Control{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Customize_New_Menu_Control = new WP_Customize_New_Menu_Control();
$WP_Customize_New_Menu_Control->render_content();

Changelog

Since 4.3.0 Introduced.
Deprecated since 4.9.0

WP_Customize_New_Menu_Control::render_content() code WP 6.4.3

<?php
public function render_content() {
	_deprecated_function( __METHOD__, '4.9.0' );
	?>
	<button type="button" class="button button-primary" id="create-new-menu-submit"><?php _e( 'Create Menu' ); ?></button>
	<span class="spinner"></span>
	<?php
}