Changeset 33602
- Timestamp:
- 08/10/2015 06:06:01 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/customize-nav-menus.js
r33515 r33602 2274 2274 * 2275 2275 * Customizer control for creating new menus and handling deletion of existing menus. 2276 * Note that 'new_menu' must match the WP_ New_Menu_Customize_Control::$type.2276 * Note that 'new_menu' must match the WP_Customize_New_Menu_Control::$type. 2277 2277 * 2278 2278 * @constructor -
trunk/src/wp-includes/class-wp-customize-control.php
r33483 r33602 1946 1946 * @see WP_Customize_Control 1947 1947 */ 1948 class WP_ New_Menu_Customize_Control extends WP_Customize_Control {1948 class WP_Customize_New_Menu_Control extends WP_Customize_Control { 1949 1949 1950 1950 /** -
trunk/src/wp-includes/class-wp-customize-nav-menus.php
r33511 r33602 576 576 ) ); 577 577 578 $this->manager->add_control( new WP_ New_Menu_Customize_Control( $this->manager, 'create_new_menu', array(578 $this->manager->add_control( new WP_Customize_New_Menu_Control( $this->manager, 'create_new_menu', array( 579 579 'section' => 'add_menu', 580 580 ) ) );
Note: See TracChangeset
for help on using the changeset viewer.