✏️ 正在编辑: class-panel.php
路径:
/home/qyel0117/public_html/wp-content/themes/oceanwp/inc/customizer/extend-section/class-panel.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php if ( class_exists( 'WP_Customize_Panel' ) ) { class OWP_Customize_Panel extends WP_Customize_Panel { public $panel; public $type = 'owp_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; } } }
💾 保存文件
← 返回文件管理器