Warning: This method has been deprecated.

WP_Customize_New_Menu_Control::render_content() WordPress Method

The WP_Customize_New_Menu_Control::render_content() method is used to display the control content for the new menu control. This method is called from the WP_Customize_Control::render() method.

WP_Customize_New_Menu_Control::render_content() #

Render the control’s content.


Source

File: wp-includes/customize/class-wp-customize-new-menu-control.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
	}


Top ↑

Changelog

Changelog
VersionDescription
4.9.0This method has been deprecated.
4.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.