wppaste
WordPress

WP_Customize_New_Menu_Control

Since
4.3.0
Source
wp-includes/customize/class-wp-customize-new-menu-control.php:21
Customize control class for new menus.

Compatibility

Deprecated in WordPress 4.9.0. This class is no longer used as of the menu creation UX introduced in #40104.

WordPress
since 4.3.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Properties · 1

$typestringpublic
Control type.

Methods · 2

Source code

class WP_Customize_New_Menu_Control extends WP_Customize_Control { 	/**	 * Control type.	 *	 * @since 4.3.0	 * @var string	 */	public $type = 'new_menu'; 	/**	 * Constructor.	 *	 * @since 4.9.0	 * @deprecated 4.9.0	 *	 * @see WP_Customize_Control::__construct()	 *	 * @param WP_Customize_Manager $manager Customizer bootstrap instance.	 * @param string               $id      The control ID.	 * @param array                $args    Optional. Arguments to override class property defaults.	 *                                      See WP_Customize_Control::__construct() for information	 *                                      on accepted arguments. Default empty array.	 */	public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) {		_deprecated_function( __METHOD__, '4.9.0' );		parent::__construct( $manager, $id, $args );	} 	/**	 * Render the control's content.	 *	 * @since 4.3.0	 * @deprecated 4.9.0	 */	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	}}

Changelog

Introduced in 4.3.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

4.9.0
Deprecated. This class is no longer used as of the menu creation UX introduced in #40104.from the docblock
4.3.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 7.0.4 tag, from src/wp-includes/customize/class-wp-customize-new-menu-control.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.