Server IP : 49.212.180.16 / Your IP : 18.191.54.249 Web Server : Apache System : FreeBSD www2606.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64 User : utannto ( 1076) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/utannto/www/bike.hironaka.biz/wp-includes/customize/ |
Upload File : |
<?php /** * Customize API: WP_Customize_New_Menu_Control class * * @package WordPress * @subpackage Customize * @since 4.4.0 */ /** * Customize control class for new menus. * * @since 4.3.0 * * @see WP_Customize_Control */ class WP_Customize_New_Menu_Control extends WP_Customize_Control { /** * Control type. * * @since 4.3.0 * @access public * @var string */ public $type = 'new_menu'; /** * Render the control's content. * * @since 4.3.0 * @access public */ public function render_content() { ?> <button type="button" class="button button-primary" id="create-new-menu-submit"><?php _e( 'Create Menu' ); ?></button> <span class="spinner"></span> <?php } }