run:R W Run
1.25 KB
2026-03-11 16:18:52
R W Run
639 By
2026-03-11 16:18:52
R W Run
2.26 KB
2026-03-11 16:18:52
R W Run
3.13 KB
2026-03-11 16:18:52
R W Run
1.42 KB
2026-03-11 16:18:52
R W Run
5.16 KB
2026-03-11 16:18:52
R W Run
9.22 KB
2026-03-11 16:18:52
R W Run
588 By
2026-03-11 16:18:52
R W Run
7.84 KB
2026-03-11 16:18:52
R W Run
1.74 KB
2026-03-11 16:18:52
R W Run
1.18 KB
2026-03-11 16:18:52
R W Run
9.18 KB
2026-03-11 16:18:52
R W Run
1.1 KB
2026-03-11 16:18:52
R W Run
2.08 KB
2026-03-11 16:18:52
R W Run
7.97 KB
2026-03-11 16:18:52
R W Run
27.22 KB
2026-03-11 16:18:52
R W Run
2.25 KB
2026-03-11 16:18:52
R W Run
2.75 KB
2026-03-11 16:18:52
R W Run
1.1 KB
2026-03-11 16:18:52
R W Run
716 By
2026-03-11 16:18:52
R W Run
18.49 KB
2026-03-11 16:18:52
R W Run
3.23 KB
2026-03-11 16:18:52
R W Run
1.67 KB
2026-03-11 16:18:52
R W Run
1.65 KB
2026-03-11 16:18:52
R W Run
10.32 KB
2026-03-11 16:18:52
R W Run
13.52 KB
2026-03-11 16:18:52
R W Run
1.03 KB
2026-03-11 16:18:52
R W Run
5.04 KB
2026-03-11 16:18:52
R W Run
11.61 KB
2026-03-11 16:18:52
R W Run
3.31 KB
2026-03-11 16:18:52
R W Run
6.79 KB
2026-03-11 16:18:52
R W Run
1.17 KB
2026-03-11 16:18:52
R W Run
686 By
2026-03-11 16:18:52
R W Run
1.68 KB
2026-03-11 16:18:52
R W Run
2.58 KB
2026-03-11 16:18:52
R W Run
error_log
📄class-wp-customize-new-menu-control.php
1<?php
2/**
3 * Customize API: WP_Customize_New_Menu_Control class
4 *
5 * @package WordPress
6 * @subpackage Customize
7 * @since 4.4.0
8 * @deprecated 4.9.0 This file is no longer used as of the menu creation UX introduced in #40104.
9 */
10
11_deprecated_file( basename( __FILE__ ), '4.9.0' );
12
13/**
14 * Customize control class for new menus.
15 *
16 * @since 4.3.0
17 * @deprecated 4.9.0 This class is no longer used as of the menu creation UX introduced in #40104.
18 *
19 * @see WP_Customize_Control
20 */
21class WP_Customize_New_Menu_Control extends WP_Customize_Control {
22
23 /**
24 * Control type.
25 *
26 * @since 4.3.0
27 * @var string
28 */
29 public $type = 'new_menu';
30
31 /**
32 * Constructor.
33 *
34 * @since 4.9.0
35 * @deprecated 4.9.0
36 *
37 * @see WP_Customize_Control::__construct()
38 *
39 * @param WP_Customize_Manager $manager Customizer bootstrap instance.
40 * @param string $id The control ID.
41 * @param array $args Optional. Arguments to override class property defaults.
42 * See WP_Customize_Control::__construct() for information
43 * on accepted arguments. Default empty array.
44 */
45 public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) {
46 _deprecated_function( __METHOD__, '4.9.0' );
47 parent::__construct( $manager, $id, $args );
48 }
49
50 /**
51 * Render the control's content.
52 *
53 * @since 4.3.0
54 * @deprecated 4.9.0
55 */
56 public function render_content() {
57 _deprecated_function( __METHOD__, '4.9.0' );
58 ?>
59 <button type="button" class="button button-primary" id="create-new-menu-submit"><?php _e( 'Create Menu' ); ?></button>
60 <span class="spinner"></span>
61 <?php
62 }
63}
64