WP_Customize_New_Menu_Section
- Since
- 4.3.0
- Source
wp-includes/customize/class-wp-customize-new-menu-section.php:21
Customize Menu Section Class
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
- __construct()Constructor.
- render()Render the section, and the controls that have been added to it.
Source code
class WP_Customize_New_Menu_Section extends WP_Customize_Section { /** * Control type. * * @since 4.3.0 * @var string */ public $type = 'new_menu'; /** * Constructor. * * Any supplied $args override class property defaults. * * @since 4.9.0 * @deprecated 4.9.0 * * @param WP_Customize_Manager $manager Customizer bootstrap instance. * @param string $id A specific ID of the section. * @param array $args Section arguments. */ public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) { _deprecated_function( __METHOD__, '4.9.0' ); parent::__construct( $manager, $id, $args ); } /** * Render the section, and the controls that have been added to it. * * @since 4.3.0 * @deprecated 4.9.0 */ protected function render() { _deprecated_function( __METHOD__, '4.9.0' ); ?> <li id="accordion-section-<?php echo esc_attr( $this->id ); ?>" class="accordion-section-new-menu"> <button type="button" class="button add-new-menu-item add-menu-toggle" aria-expanded="false"> <?php echo esc_html( $this->title ); ?> </button> <ul class="new-menu-section-content"></ul> </li> <?php }}Changelog
Introduced in 4.3.0. Unchanged from 6.7.7 through 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 6.8.8 tag, from
src/wp-includes/customize/class-wp-customize-new-menu-section.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.