OwlCyberSecurity - MANAGER
Edit File: class-wp-customize-panel.php
<?php /** * Nested Panel * @link https://gist.github.com/OriginalEXE/9a6183e09f4cae2f30b006232bb154af */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( class_exists( 'WP_Customize_Panel' ) ) { class Neytri_Customize_Panel extends WP_Customize_Panel { public $panel; public $type = 'neytri_extend_panel'; public function json() { $array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'type', 'panel' ) ); $array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) ); $array['content'] = $this->get_content(); $array['active'] = $this->active(); $array['instanceNumber'] = $this->instance_number; return $array; } } }