File "class-wp-customize-nav-menu-section.php"

Full path: /home/kosmetik/public_html/wp-includes/customize/class-wp-customize-nav-menu-section.php
File size: 304 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

class WP_Customize_Nav_Menu_Section extends WP_Customize_Section
{
    public $type = 'nav_menu';
    public function json()
    {
        $exported = parent::json();
        $exported['menu_id'] = (int) preg_replace('/^nav_menu\\[(-?\\d+)\\]/', '$1', $this->id);
        return $exported;
    }
}