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-sidebar-section.php
1<?php
2/**
3 * Customize API: WP_Customize_Sidebar_Section class
4 *
5 * @package WordPress
6 * @subpackage Customize
7 * @since 4.4.0
8 */
9
10/**
11 * Customizer section representing widget area (sidebar).
12 *
13 * @since 4.1.0
14 *
15 * @see WP_Customize_Section
16 */
17class WP_Customize_Sidebar_Section extends WP_Customize_Section {
18
19 /**
20 * Type of this section.
21 *
22 * @since 4.1.0
23 * @var string
24 */
25 public $type = 'sidebar';
26
27 /**
28 * Unique identifier.
29 *
30 * @since 4.1.0
31 * @var string
32 */
33 public $sidebar_id;
34
35 /**
36 * Gather the parameters passed to client JavaScript via JSON.
37 *
38 * @since 4.1.0
39 *
40 * @return array The array to be exported to the client as JSON.
41 */
42 public function json() {
43 $json = parent::json();
44 $json['sidebarId'] = $this->sidebar_id;
45 return $json;
46 }
47
48 /**
49 * Whether the current sidebar is rendered on the page.
50 *
51 * @since 4.1.0
52 *
53 * @return bool Whether sidebar is rendered.
54 */
55 public function active_callback() {
56 return $this->manager->widgets->is_sidebar_rendered( $this->sidebar_id );
57 }
58}
59