WP_Customize_New_Menu_Control::render_contentpublicWP 4.3.0

Deprecated since 4.9.0. It is no longer supported and may 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.

Returns

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.8.1

<?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
}