author | ymh <ymh.work@gmail.com> |
Fri, 05 Sep 2025 18:40:08 +0200 | |
changeset 21 | 48c4eec2b7e6 |
parent 19 | 3d72ae0968f4 |
child 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3 |
* Core Widgets API |
0 | 4 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5 |
* This API is used for creating dynamic sidebar without hardcoding functionality into |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
6 |
* themes |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
7 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
8 |
* Includes both internal WordPress routines and theme-use routines. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
9 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
* This functionality was found in a plugin before the WordPress 2.2 release, which |
0 | 11 |
* included it in the core from that point on. |
12 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
13 |
* @link https://wordpress.org/documentation/article/manage-wordpress-widgets/ |
16 | 14 |
* @link https://developer.wordpress.org/themes/functionality/widgets/ |
0 | 15 |
* |
16 |
* @package WordPress |
|
17 |
* @subpackage Widgets |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
18 |
* @since 2.2.0 |
0 | 19 |
*/ |
20 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
// |
16 | 22 |
// Global Variables. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
// |
0 | 24 |
|
25 |
/** @ignore */ |
|
26 |
global $wp_registered_sidebars, $wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates; |
|
27 |
||
28 |
/** |
|
29 |
* Stores the sidebars, since many themes can have more than one. |
|
30 |
* |
|
31 |
* @since 2.2.0 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
32 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
33 |
* @global array $wp_registered_sidebars The registered sidebars. |
0 | 34 |
*/ |
35 |
$wp_registered_sidebars = array(); |
|
36 |
||
37 |
/** |
|
38 |
* Stores the registered widgets. |
|
39 |
* |
|
40 |
* @since 2.2.0 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
41 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
42 |
* @global array $wp_registered_widgets The registered widgets. |
0 | 43 |
*/ |
44 |
$wp_registered_widgets = array(); |
|
45 |
||
46 |
/** |
|
16 | 47 |
* Stores the registered widget controls (options). |
0 | 48 |
* |
49 |
* @since 2.2.0 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
50 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
51 |
* @global array $wp_registered_widget_controls The registered widget controls. |
0 | 52 |
*/ |
53 |
$wp_registered_widget_controls = array(); |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
54 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
55 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
56 |
* Stores the registered widget updates. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
57 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
58 |
* @since 2.8.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
59 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
60 |
* @global array $wp_registered_widget_updates The registered widget updates. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
61 |
*/ |
0 | 62 |
$wp_registered_widget_updates = array(); |
63 |
||
64 |
/** |
|
65 |
* Private |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
* @global array $_wp_sidebars_widgets |
0 | 68 |
*/ |
69 |
$_wp_sidebars_widgets = array(); |
|
70 |
||
71 |
/** |
|
72 |
* Private |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
73 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
74 |
* @global array $_wp_deprecated_widgets_callbacks |
0 | 75 |
*/ |
5 | 76 |
$GLOBALS['_wp_deprecated_widgets_callbacks'] = array( |
77 |
'wp_widget_pages', |
|
0 | 78 |
'wp_widget_pages_control', |
79 |
'wp_widget_calendar', |
|
80 |
'wp_widget_calendar_control', |
|
81 |
'wp_widget_archives', |
|
82 |
'wp_widget_archives_control', |
|
83 |
'wp_widget_links', |
|
84 |
'wp_widget_meta', |
|
85 |
'wp_widget_meta_control', |
|
86 |
'wp_widget_search', |
|
87 |
'wp_widget_recent_entries', |
|
88 |
'wp_widget_recent_entries_control', |
|
89 |
'wp_widget_tag_cloud', |
|
90 |
'wp_widget_tag_cloud_control', |
|
91 |
'wp_widget_categories', |
|
92 |
'wp_widget_categories_control', |
|
93 |
'wp_widget_text', |
|
94 |
'wp_widget_text_control', |
|
95 |
'wp_widget_rss', |
|
96 |
'wp_widget_rss_control', |
|
97 |
'wp_widget_recent_comments', |
|
9 | 98 |
'wp_widget_recent_comments_control', |
5 | 99 |
); |
0 | 100 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
// |
16 | 102 |
// Template tags & API functions. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
// |
0 | 104 |
|
105 |
/** |
|
106 |
* Register a widget |
|
107 |
* |
|
108 |
* Registers a WP_Widget widget |
|
109 |
* |
|
110 |
* @since 2.8.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
* @since 4.6.0 Updated the `$widget` parameter to also accept a WP_Widget instance object |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
* instead of simply a `WP_Widget` subclass name. |
0 | 113 |
* |
114 |
* @see WP_Widget |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
115 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
116 |
* @global WP_Widget_Factory $wp_widget_factory |
0 | 117 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
118 |
* @param string|WP_Widget $widget Either the name of a `WP_Widget` subclass or an instance of a `WP_Widget` subclass. |
0 | 119 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
120 |
function register_widget( $widget ) { |
0 | 121 |
global $wp_widget_factory; |
122 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
123 |
$wp_widget_factory->register( $widget ); |
0 | 124 |
} |
125 |
||
126 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
* Unregisters a widget. |
0 | 128 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
129 |
* Unregisters a WP_Widget widget. Useful for un-registering default widgets. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
130 |
* Run within a function hooked to the {@see 'widgets_init'} action. |
0 | 131 |
* |
132 |
* @since 2.8.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
133 |
* @since 4.6.0 Updated the `$widget` parameter to also accept a WP_Widget instance object |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
134 |
* instead of simply a `WP_Widget` subclass name. |
0 | 135 |
* |
136 |
* @see WP_Widget |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
138 |
* @global WP_Widget_Factory $wp_widget_factory |
0 | 139 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
140 |
* @param string|WP_Widget $widget Either the name of a `WP_Widget` subclass or an instance of a `WP_Widget` subclass. |
0 | 141 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
142 |
function unregister_widget( $widget ) { |
0 | 143 |
global $wp_widget_factory; |
144 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
$wp_widget_factory->unregister( $widget ); |
0 | 146 |
} |
147 |
||
148 |
/** |
|
149 |
* Creates multiple sidebars. |
|
150 |
* |
|
151 |
* If you wanted to quickly create multiple sidebars for a theme or internally. |
|
152 |
* This function will allow you to do so. If you don't pass the 'name' and/or |
|
5 | 153 |
* 'id' in `$args`, then they will be built for you. |
0 | 154 |
* |
155 |
* @since 2.2.0 |
|
156 |
* |
|
157 |
* @see register_sidebar() The second parameter is documented by register_sidebar() and is the same here. |
|
5 | 158 |
* |
9 | 159 |
* @global array $wp_registered_sidebars The new sidebars are stored in this array by sidebar ID. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
160 |
* |
5 | 161 |
* @param int $number Optional. Number of sidebars to create. Default 1. |
162 |
* @param array|string $args { |
|
163 |
* Optional. Array or string of arguments for building a sidebar. |
|
0 | 164 |
* |
5 | 165 |
* @type string $id The base string of the unique identifier for each sidebar. If provided, and multiple |
16 | 166 |
* sidebars are being defined, the ID will have "-2" appended, and so on. |
5 | 167 |
* Default 'sidebar-' followed by the number the sidebar creation is currently at. |
168 |
* @type string $name The name or title for the sidebars displayed in the admin dashboard. If registering |
|
169 |
* more than one sidebar, include '%d' in the string as a placeholder for the uniquely |
|
170 |
* assigned number for each sidebar. |
|
171 |
* Default 'Sidebar' for the first sidebar, otherwise 'Sidebar %d'. |
|
172 |
* } |
|
0 | 173 |
*/ |
5 | 174 |
function register_sidebars( $number = 1, $args = array() ) { |
0 | 175 |
global $wp_registered_sidebars; |
176 |
$number = (int) $number; |
|
177 |
||
9 | 178 |
if ( is_string( $args ) ) { |
179 |
parse_str( $args, $args ); |
|
180 |
} |
|
0 | 181 |
|
182 |
for ( $i = 1; $i <= $number; $i++ ) { |
|
183 |
$_args = $args; |
|
184 |
||
9 | 185 |
if ( $number > 1 ) { |
16 | 186 |
if ( isset( $args['name'] ) ) { |
187 |
$_args['name'] = sprintf( $args['name'], $i ); |
|
188 |
} else { |
|
189 |
/* translators: %d: Sidebar number. */ |
|
190 |
$_args['name'] = sprintf( __( 'Sidebar %d' ), $i ); |
|
191 |
} |
|
9 | 192 |
} else { |
193 |
$_args['name'] = isset( $args['name'] ) ? $args['name'] : __( 'Sidebar' ); |
|
194 |
} |
|
0 | 195 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
196 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
197 |
* Custom specified ID's are suffixed if they exist already. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
198 |
* Automatically generated sidebar names need to be suffixed regardless starting at -0. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
199 |
*/ |
9 | 200 |
if ( isset( $args['id'] ) ) { |
0 | 201 |
$_args['id'] = $args['id']; |
16 | 202 |
$n = 2; // Start at -2 for conflicting custom IDs. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
203 |
while ( is_registered_sidebar( $_args['id'] ) ) { |
0 | 204 |
$_args['id'] = $args['id'] . '-' . $n++; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
205 |
} |
0 | 206 |
} else { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
207 |
$n = count( $wp_registered_sidebars ); |
0 | 208 |
do { |
209 |
$_args['id'] = 'sidebar-' . ++$n; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
210 |
} while ( is_registered_sidebar( $_args['id'] ) ); |
0 | 211 |
} |
9 | 212 |
register_sidebar( $_args ); |
0 | 213 |
} |
214 |
} |
|
215 |
||
216 |
/** |
|
217 |
* Builds the definition for a single sidebar and returns the ID. |
|
218 |
* |
|
219 |
* Accepts either a string or an array and then parses that against a set |
|
220 |
* of default arguments for the new sidebar. WordPress will automatically |
|
221 |
* generate a sidebar ID and name based on the current number of registered |
|
222 |
* sidebars if those arguments are not included. |
|
223 |
* |
|
224 |
* When allowing for automatic generation of the name and ID parameters, keep |
|
225 |
* in mind that the incrementor for your sidebar can change over time depending |
|
226 |
* on what other plugins and themes are installed. |
|
227 |
* |
|
228 |
* If theme support for 'widgets' has not yet been added when this function is |
|
229 |
* called, it will be automatically enabled through the use of add_theme_support() |
|
230 |
* |
|
5 | 231 |
* @since 2.2.0 |
18 | 232 |
* @since 5.6.0 Added the `before_sidebar` and `after_sidebar` arguments. |
19 | 233 |
* @since 5.9.0 Added the `show_in_rest` argument. |
0 | 234 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
235 |
* @global array $wp_registered_sidebars The registered sidebars. |
0 | 236 |
* |
5 | 237 |
* @param array|string $args { |
238 |
* Optional. Array or string of arguments for the sidebar being registered. |
|
0 | 239 |
* |
18 | 240 |
* @type string $name The name or title of the sidebar displayed in the Widgets |
241 |
* interface. Default 'Sidebar $instance'. |
|
242 |
* @type string $id The unique identifier by which the sidebar will be called. |
|
243 |
* Default 'sidebar-$instance'. |
|
244 |
* @type string $description Description of the sidebar, displayed in the Widgets interface. |
|
245 |
* Default empty string. |
|
246 |
* @type string $class Extra CSS class to assign to the sidebar in the Widgets interface. |
|
247 |
* Default empty. |
|
248 |
* @type string $before_widget HTML content to prepend to each widget's HTML output when assigned |
|
249 |
* to this sidebar. Receives the widget's ID attribute as `%1$s` |
|
250 |
* and class name as `%2$s`. Default is an opening list item element. |
|
251 |
* @type string $after_widget HTML content to append to each widget's HTML output when assigned |
|
252 |
* to this sidebar. Default is a closing list item element. |
|
253 |
* @type string $before_title HTML content to prepend to the sidebar title when displayed. |
|
254 |
* Default is an opening h2 element. |
|
255 |
* @type string $after_title HTML content to append to the sidebar title when displayed. |
|
256 |
* Default is a closing h2 element. |
|
257 |
* @type string $before_sidebar HTML content to prepend to the sidebar when displayed. |
|
258 |
* Receives the `$id` argument as `%1$s` and `$class` as `%2$s`. |
|
259 |
* Outputs after the {@see 'dynamic_sidebar_before'} action. |
|
260 |
* Default empty string. |
|
261 |
* @type string $after_sidebar HTML content to append to the sidebar when displayed. |
|
262 |
* Outputs before the {@see 'dynamic_sidebar_after'} action. |
|
263 |
* Default empty string. |
|
19 | 264 |
* @type bool $show_in_rest Whether to show this sidebar publicly in the REST API. |
265 |
* Defaults to only showing the sidebar to administrator users. |
|
5 | 266 |
* } |
0 | 267 |
* @return string Sidebar ID added to $wp_registered_sidebars global. |
268 |
*/ |
|
9 | 269 |
function register_sidebar( $args = array() ) { |
0 | 270 |
global $wp_registered_sidebars; |
271 |
||
9 | 272 |
$i = count( $wp_registered_sidebars ) + 1; |
0 | 273 |
|
5 | 274 |
$id_is_empty = empty( $args['id'] ); |
275 |
||
0 | 276 |
$defaults = array( |
16 | 277 |
/* translators: %d: Sidebar number. */ |
18 | 278 |
'name' => sprintf( __( 'Sidebar %d' ), $i ), |
279 |
'id' => "sidebar-$i", |
|
280 |
'description' => '', |
|
281 |
'class' => '', |
|
282 |
'before_widget' => '<li id="%1$s" class="widget %2$s">', |
|
283 |
'after_widget' => "</li>\n", |
|
284 |
'before_title' => '<h2 class="widgettitle">', |
|
285 |
'after_title' => "</h2>\n", |
|
286 |
'before_sidebar' => '', |
|
287 |
'after_sidebar' => '', |
|
19 | 288 |
'show_in_rest' => false, |
0 | 289 |
); |
290 |
||
16 | 291 |
/** |
292 |
* Filters the sidebar default arguments. |
|
293 |
* |
|
294 |
* @since 5.3.0 |
|
295 |
* |
|
296 |
* @see register_sidebar() |
|
297 |
* |
|
298 |
* @param array $defaults The default sidebar arguments. |
|
299 |
*/ |
|
300 |
$sidebar = wp_parse_args( $args, apply_filters( 'register_sidebar_defaults', $defaults ) ); |
|
0 | 301 |
|
5 | 302 |
if ( $id_is_empty ) { |
16 | 303 |
_doing_it_wrong( |
304 |
__FUNCTION__, |
|
305 |
sprintf( |
|
306 |
/* translators: 1: The 'id' argument, 2: Sidebar name, 3: Recommended 'id' value. */ |
|
307 |
__( 'No %1$s was set in the arguments array for the "%2$s" sidebar. Defaulting to "%3$s". Manually set the %1$s to "%3$s" to silence this notice and keep existing sidebar content.' ), |
|
308 |
'<code>id</code>', |
|
309 |
$sidebar['name'], |
|
310 |
$sidebar['id'] |
|
311 |
), |
|
312 |
'4.2.0' |
|
313 |
); |
|
5 | 314 |
} |
315 |
||
9 | 316 |
$wp_registered_sidebars[ $sidebar['id'] ] = $sidebar; |
0 | 317 |
|
9 | 318 |
add_theme_support( 'widgets' ); |
0 | 319 |
|
5 | 320 |
/** |
321 |
* Fires once a sidebar has been registered. |
|
322 |
* |
|
323 |
* @since 3.0.0 |
|
324 |
* |
|
325 |
* @param array $sidebar Parsed arguments for the registered sidebar. |
|
326 |
*/ |
|
0 | 327 |
do_action( 'register_sidebar', $sidebar ); |
328 |
||
329 |
return $sidebar['id']; |
|
330 |
} |
|
331 |
||
332 |
/** |
|
333 |
* Removes a sidebar from the list. |
|
334 |
* |
|
335 |
* @since 2.2.0 |
|
336 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
337 |
* @global array $wp_registered_sidebars The registered sidebars. |
0 | 338 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
339 |
* @param string|int $sidebar_id The ID of the sidebar when it was registered. |
0 | 340 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
341 |
function unregister_sidebar( $sidebar_id ) { |
0 | 342 |
global $wp_registered_sidebars; |
343 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
344 |
unset( $wp_registered_sidebars[ $sidebar_id ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
345 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
346 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
347 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
348 |
* Checks if a sidebar is registered. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
349 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
350 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
351 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
352 |
* @global array $wp_registered_sidebars The registered sidebars. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
353 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
354 |
* @param string|int $sidebar_id The ID of the sidebar when it was registered. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
355 |
* @return bool True if the sidebar is registered, false otherwise. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
356 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
357 |
function is_registered_sidebar( $sidebar_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
358 |
global $wp_registered_sidebars; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
359 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
360 |
return isset( $wp_registered_sidebars[ $sidebar_id ] ); |
0 | 361 |
} |
362 |
||
363 |
/** |
|
5 | 364 |
* Register an instance of a widget. |
0 | 365 |
* |
5 | 366 |
* The default widget option is 'classname' that can be overridden. |
0 | 367 |
* |
5 | 368 |
* The function can also be used to un-register widgets when `$output_callback` |
0 | 369 |
* parameter is an empty string. |
370 |
* |
|
371 |
* @since 2.2.0 |
|
16 | 372 |
* @since 5.3.0 Formalized the existing and already documented `...$params` parameter |
373 |
* by adding it to the function signature. |
|
18 | 374 |
* @since 5.8.0 Added show_instance_in_rest option. |
0 | 375 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
376 |
* @global array $wp_registered_widgets Uses stored registered widgets. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
377 |
* @global array $wp_registered_widget_controls Stores the registered widget controls (options). |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
378 |
* @global array $wp_registered_widget_updates The registered widget updates. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
379 |
* @global array $_wp_deprecated_widgets_callbacks |
5 | 380 |
* |
381 |
* @param int|string $id Widget ID. |
|
382 |
* @param string $name Widget display title. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
383 |
* @param callable $output_callback Run when widget is called. |
5 | 384 |
* @param array $options { |
385 |
* Optional. An array of supplementary widget options for the instance. |
|
0 | 386 |
* |
18 | 387 |
* @type string $classname Class name for the widget's HTML container. Default is a shortened |
388 |
* version of the output callback name. |
|
389 |
* @type string $description Widget description for display in the widget administration |
|
390 |
* panel and/or theme. |
|
391 |
* @type bool $show_instance_in_rest Whether to show the widget's instance settings in the REST API. |
|
392 |
* Only available for WP_Widget based widgets. |
|
5 | 393 |
* } |
16 | 394 |
* @param mixed ...$params Optional additional parameters to pass to the callback function when it's called. |
0 | 395 |
*/ |
16 | 396 |
function wp_register_sidebar_widget( $id, $name, $output_callback, $options = array(), ...$params ) { |
0 | 397 |
global $wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates, $_wp_deprecated_widgets_callbacks; |
398 |
||
9 | 399 |
$id = strtolower( $id ); |
0 | 400 |
|
9 | 401 |
if ( empty( $output_callback ) ) { |
402 |
unset( $wp_registered_widgets[ $id ] ); |
|
0 | 403 |
return; |
404 |
} |
|
405 |
||
9 | 406 |
$id_base = _get_widget_id_base( $id ); |
407 |
if ( in_array( $output_callback, $_wp_deprecated_widgets_callbacks, true ) && ! is_callable( $output_callback ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
408 |
unset( $wp_registered_widget_controls[ $id ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
409 |
unset( $wp_registered_widget_updates[ $id_base ] ); |
0 | 410 |
return; |
411 |
} |
|
412 |
||
9 | 413 |
$defaults = array( 'classname' => $output_callback ); |
414 |
$options = wp_parse_args( $options, $defaults ); |
|
415 |
$widget = array( |
|
416 |
'name' => $name, |
|
417 |
'id' => $id, |
|
0 | 418 |
'callback' => $output_callback, |
16 | 419 |
'params' => $params, |
0 | 420 |
); |
9 | 421 |
$widget = array_merge( $widget, $options ); |
0 | 422 |
|
9 | 423 |
if ( is_callable( $output_callback ) && ( ! isset( $wp_registered_widgets[ $id ] ) || did_action( 'widgets_init' ) ) ) { |
5 | 424 |
|
425 |
/** |
|
426 |
* Fires once for each registered widget. |
|
427 |
* |
|
428 |
* @since 3.0.0 |
|
429 |
* |
|
430 |
* @param array $widget An array of default widget arguments. |
|
431 |
*/ |
|
0 | 432 |
do_action( 'wp_register_sidebar_widget', $widget ); |
9 | 433 |
$wp_registered_widgets[ $id ] = $widget; |
0 | 434 |
} |
435 |
} |
|
436 |
||
437 |
/** |
|
438 |
* Retrieve description for widget. |
|
439 |
* |
|
440 |
* When registering widgets, the options can also include 'description' that |
|
441 |
* describes the widget for display on the widget administration panel or |
|
442 |
* in the theme. |
|
443 |
* |
|
444 |
* @since 2.5.0 |
|
445 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
446 |
* @global array $wp_registered_widgets The registered widgets. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
447 |
* |
0 | 448 |
* @param int|string $id Widget ID. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
449 |
* @return string|void Widget description, if available. |
0 | 450 |
*/ |
451 |
function wp_widget_description( $id ) { |
|
9 | 452 |
if ( ! is_scalar( $id ) ) { |
0 | 453 |
return; |
9 | 454 |
} |
0 | 455 |
|
456 |
global $wp_registered_widgets; |
|
457 |
||
9 | 458 |
if ( isset( $wp_registered_widgets[ $id ]['description'] ) ) { |
459 |
return esc_html( $wp_registered_widgets[ $id ]['description'] ); |
|
460 |
} |
|
0 | 461 |
} |
462 |
||
463 |
/** |
|
464 |
* Retrieve description for a sidebar. |
|
465 |
* |
|
466 |
* When registering sidebars a 'description' parameter can be included that |
|
467 |
* describes the sidebar for display on the widget administration panel. |
|
468 |
* |
|
469 |
* @since 2.9.0 |
|
470 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
471 |
* @global array $wp_registered_sidebars The registered sidebars. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
472 |
* |
5 | 473 |
* @param string $id sidebar ID. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
474 |
* @return string|void Sidebar description, if available. |
0 | 475 |
*/ |
476 |
function wp_sidebar_description( $id ) { |
|
9 | 477 |
if ( ! is_scalar( $id ) ) { |
0 | 478 |
return; |
9 | 479 |
} |
0 | 480 |
|
481 |
global $wp_registered_sidebars; |
|
482 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
483 |
if ( isset( $wp_registered_sidebars[ $id ]['description'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
484 |
return wp_kses( $wp_registered_sidebars[ $id ]['description'], 'sidebar_description' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
485 |
} |
0 | 486 |
} |
487 |
||
488 |
/** |
|
489 |
* Remove widget from sidebar. |
|
490 |
* |
|
491 |
* @since 2.2.0 |
|
492 |
* |
|
493 |
* @param int|string $id Widget ID. |
|
494 |
*/ |
|
9 | 495 |
function wp_unregister_sidebar_widget( $id ) { |
5 | 496 |
|
497 |
/** |
|
498 |
* Fires just before a widget is removed from a sidebar. |
|
499 |
* |
|
500 |
* @since 3.0.0 |
|
501 |
* |
|
19 | 502 |
* @param int|string $id The widget ID. |
5 | 503 |
*/ |
0 | 504 |
do_action( 'wp_unregister_sidebar_widget', $id ); |
505 |
||
9 | 506 |
wp_register_sidebar_widget( $id, '', '' ); |
507 |
wp_unregister_widget_control( $id ); |
|
0 | 508 |
} |
509 |
||
510 |
/** |
|
511 |
* Registers widget control callback for customizing options. |
|
512 |
* |
|
513 |
* @since 2.2.0 |
|
16 | 514 |
* @since 5.3.0 Formalized the existing and already documented `...$params` parameter |
515 |
* by adding it to the function signature. |
|
5 | 516 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
517 |
* @global array $wp_registered_widget_controls The registered widget controls. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
518 |
* @global array $wp_registered_widget_updates The registered widget updates. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
519 |
* @global array $wp_registered_widgets The registered widgets. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
520 |
* @global array $_wp_deprecated_widgets_callbacks |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
521 |
* |
16 | 522 |
* @param int|string $id Sidebar ID. |
523 |
* @param string $name Sidebar display name. |
|
524 |
* @param callable $control_callback Run when sidebar is displayed. |
|
525 |
* @param array $options { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
526 |
* Optional. Array or string of control options. Default empty array. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
527 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
528 |
* @type int $height Never used. Default 200. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
529 |
* @type int $width Width of the fully expanded control form (but try hard to use the default width). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
530 |
* Default 250. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
531 |
* @type int|string $id_base Required for multi-widgets, i.e widgets that allow multiple instances such as the |
19 | 532 |
* text widget. The widget ID will end up looking like `{$id_base}-{$unique_number}`. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
533 |
* } |
16 | 534 |
* @param mixed ...$params Optional additional parameters to pass to the callback function when it's called. |
0 | 535 |
*/ |
16 | 536 |
function wp_register_widget_control( $id, $name, $control_callback, $options = array(), ...$params ) { |
0 | 537 |
global $wp_registered_widget_controls, $wp_registered_widget_updates, $wp_registered_widgets, $_wp_deprecated_widgets_callbacks; |
538 |
||
9 | 539 |
$id = strtolower( $id ); |
540 |
$id_base = _get_widget_id_base( $id ); |
|
0 | 541 |
|
9 | 542 |
if ( empty( $control_callback ) ) { |
543 |
unset( $wp_registered_widget_controls[ $id ] ); |
|
544 |
unset( $wp_registered_widget_updates[ $id_base ] ); |
|
0 | 545 |
return; |
546 |
} |
|
547 |
||
9 | 548 |
if ( in_array( $control_callback, $_wp_deprecated_widgets_callbacks, true ) && ! is_callable( $control_callback ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
549 |
unset( $wp_registered_widgets[ $id ] ); |
0 | 550 |
return; |
551 |
} |
|
552 |
||
9 | 553 |
if ( isset( $wp_registered_widget_controls[ $id ] ) && ! did_action( 'widgets_init' ) ) { |
0 | 554 |
return; |
9 | 555 |
} |
0 | 556 |
|
9 | 557 |
$defaults = array( |
558 |
'width' => 250, |
|
559 |
'height' => 200, |
|
16 | 560 |
); // Height is never used. |
9 | 561 |
$options = wp_parse_args( $options, $defaults ); |
562 |
$options['width'] = (int) $options['width']; |
|
0 | 563 |
$options['height'] = (int) $options['height']; |
564 |
||
565 |
$widget = array( |
|
9 | 566 |
'name' => $name, |
567 |
'id' => $id, |
|
0 | 568 |
'callback' => $control_callback, |
16 | 569 |
'params' => $params, |
0 | 570 |
); |
9 | 571 |
$widget = array_merge( $widget, $options ); |
0 | 572 |
|
9 | 573 |
$wp_registered_widget_controls[ $id ] = $widget; |
0 | 574 |
|
9 | 575 |
if ( isset( $wp_registered_widget_updates[ $id_base ] ) ) { |
0 | 576 |
return; |
9 | 577 |
} |
0 | 578 |
|
9 | 579 |
if ( isset( $widget['params'][0]['number'] ) ) { |
0 | 580 |
$widget['params'][0]['number'] = -1; |
9 | 581 |
} |
0 | 582 |
|
9 | 583 |
unset( $widget['width'], $widget['height'], $widget['name'], $widget['id'] ); |
584 |
$wp_registered_widget_updates[ $id_base ] = $widget; |
|
0 | 585 |
} |
586 |
||
5 | 587 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
588 |
* Registers the update callback for a widget. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
589 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
590 |
* @since 2.8.0 |
16 | 591 |
* @since 5.3.0 Formalized the existing and already documented `...$params` parameter |
592 |
* by adding it to the function signature. |
|
5 | 593 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
594 |
* @global array $wp_registered_widget_updates The registered widget updates. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
595 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
596 |
* @param string $id_base The base ID of a widget created by extending WP_Widget. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
597 |
* @param callable $update_callback Update callback method for the widget. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
598 |
* @param array $options Optional. Widget control options. See wp_register_widget_control(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
599 |
* Default empty array. |
16 | 600 |
* @param mixed ...$params Optional additional parameters to pass to the callback function when it's called. |
5 | 601 |
*/ |
16 | 602 |
function _register_widget_update_callback( $id_base, $update_callback, $options = array(), ...$params ) { |
0 | 603 |
global $wp_registered_widget_updates; |
604 |
||
9 | 605 |
if ( isset( $wp_registered_widget_updates[ $id_base ] ) ) { |
606 |
if ( empty( $update_callback ) ) { |
|
607 |
unset( $wp_registered_widget_updates[ $id_base ] ); |
|
608 |
} |
|
0 | 609 |
return; |
610 |
} |
|
611 |
||
612 |
$widget = array( |
|
613 |
'callback' => $update_callback, |
|
16 | 614 |
'params' => $params, |
0 | 615 |
); |
616 |
||
9 | 617 |
$widget = array_merge( $widget, $options ); |
618 |
$wp_registered_widget_updates[ $id_base ] = $widget; |
|
0 | 619 |
} |
620 |
||
5 | 621 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
622 |
* Registers the form callback for a widget. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
623 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
624 |
* @since 2.8.0 |
16 | 625 |
* @since 5.3.0 Formalized the existing and already documented `...$params` parameter |
626 |
* by adding it to the function signature. |
|
5 | 627 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
628 |
* @global array $wp_registered_widget_controls The registered widget controls. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
629 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
630 |
* @param int|string $id Widget ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
631 |
* @param string $name Name attribute for the widget. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
632 |
* @param callable $form_callback Form callback. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
633 |
* @param array $options Optional. Widget control options. See wp_register_widget_control(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
634 |
* Default empty array. |
16 | 635 |
* @param mixed ...$params Optional additional parameters to pass to the callback function when it's called. |
5 | 636 |
*/ |
16 | 637 |
|
638 |
function _register_widget_form_callback( $id, $name, $form_callback, $options = array(), ...$params ) { |
|
0 | 639 |
global $wp_registered_widget_controls; |
640 |
||
9 | 641 |
$id = strtolower( $id ); |
0 | 642 |
|
9 | 643 |
if ( empty( $form_callback ) ) { |
644 |
unset( $wp_registered_widget_controls[ $id ] ); |
|
645 |
return; |
|
646 |
} |
|
647 |
||
648 |
if ( isset( $wp_registered_widget_controls[ $id ] ) && ! did_action( 'widgets_init' ) ) { |
|
0 | 649 |
return; |
650 |
} |
|
651 |
||
9 | 652 |
$defaults = array( |
653 |
'width' => 250, |
|
654 |
'height' => 200, |
|
655 |
); |
|
656 |
$options = wp_parse_args( $options, $defaults ); |
|
657 |
$options['width'] = (int) $options['width']; |
|
0 | 658 |
$options['height'] = (int) $options['height']; |
659 |
||
660 |
$widget = array( |
|
9 | 661 |
'name' => $name, |
662 |
'id' => $id, |
|
0 | 663 |
'callback' => $form_callback, |
16 | 664 |
'params' => $params, |
0 | 665 |
); |
9 | 666 |
$widget = array_merge( $widget, $options ); |
0 | 667 |
|
9 | 668 |
$wp_registered_widget_controls[ $id ] = $widget; |
0 | 669 |
} |
670 |
||
671 |
/** |
|
672 |
* Remove control callback for widget. |
|
673 |
* |
|
674 |
* @since 2.2.0 |
|
675 |
* |
|
676 |
* @param int|string $id Widget ID. |
|
677 |
*/ |
|
9 | 678 |
function wp_unregister_widget_control( $id ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
679 |
wp_register_widget_control( $id, '', '' ); |
0 | 680 |
} |
681 |
||
682 |
/** |
|
683 |
* Display dynamic sidebar. |
|
684 |
* |
|
685 |
* By default this displays the default sidebar or 'sidebar-1'. If your theme specifies the 'id' or |
|
16 | 686 |
* 'name' parameter for its registered sidebars you can pass an ID or name as the $index parameter. |
0 | 687 |
* Otherwise, you can pass in a numerical index to display the sidebar at that index. |
688 |
* |
|
689 |
* @since 2.2.0 |
|
690 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
691 |
* @global array $wp_registered_sidebars The registered sidebars. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
692 |
* @global array $wp_registered_widgets The registered widgets. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
693 |
* |
16 | 694 |
* @param int|string $index Optional. Index, name or ID of dynamic sidebar. Default 1. |
0 | 695 |
* @return bool True, if widget sidebar was found and called. False if not found or not called. |
696 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
697 |
function dynamic_sidebar( $index = 1 ) { |
0 | 698 |
global $wp_registered_sidebars, $wp_registered_widgets; |
699 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
700 |
if ( is_int( $index ) ) { |
0 | 701 |
$index = "sidebar-$index"; |
702 |
} else { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
703 |
$index = sanitize_title( $index ); |
0 | 704 |
foreach ( (array) $wp_registered_sidebars as $key => $value ) { |
16 | 705 |
if ( sanitize_title( $value['name'] ) === $index ) { |
0 | 706 |
$index = $key; |
707 |
break; |
|
708 |
} |
|
709 |
} |
|
710 |
} |
|
711 |
||
712 |
$sidebars_widgets = wp_get_sidebars_widgets(); |
|
713 |
if ( empty( $wp_registered_sidebars[ $index ] ) || empty( $sidebars_widgets[ $index ] ) || ! is_array( $sidebars_widgets[ $index ] ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
714 |
/** This action is documented in wp-includes/widget.php */ |
5 | 715 |
do_action( 'dynamic_sidebar_before', $index, false ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
716 |
/** This action is documented in wp-includes/widget.php */ |
9 | 717 |
do_action( 'dynamic_sidebar_after', $index, false ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
718 |
/** This filter is documented in wp-includes/widget.php */ |
5 | 719 |
return apply_filters( 'dynamic_sidebar_has_widgets', false, $index ); |
0 | 720 |
} |
721 |
||
18 | 722 |
$sidebar = $wp_registered_sidebars[ $index ]; |
723 |
||
724 |
$sidebar['before_sidebar'] = sprintf( $sidebar['before_sidebar'], $sidebar['id'], $sidebar['class'] ); |
|
725 |
||
5 | 726 |
/** |
727 |
* Fires before widgets are rendered in a dynamic sidebar. |
|
728 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
729 |
* Note: The action also fires for empty sidebars, and on both the front end |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
730 |
* and back end, including the Inactive Widgets sidebar on the Widgets screen. |
5 | 731 |
* |
732 |
* @since 3.9.0 |
|
733 |
* |
|
734 |
* @param int|string $index Index, name, or ID of the dynamic sidebar. |
|
735 |
* @param bool $has_widgets Whether the sidebar is populated with widgets. |
|
736 |
* Default true. |
|
737 |
*/ |
|
738 |
do_action( 'dynamic_sidebar_before', $index, true ); |
|
18 | 739 |
|
740 |
if ( ! is_admin() && ! empty( $sidebar['before_sidebar'] ) ) { |
|
741 |
echo $sidebar['before_sidebar']; |
|
742 |
} |
|
0 | 743 |
|
744 |
$did_one = false; |
|
9 | 745 |
foreach ( (array) $sidebars_widgets[ $index ] as $id ) { |
0 | 746 |
|
9 | 747 |
if ( ! isset( $wp_registered_widgets[ $id ] ) ) { |
748 |
continue; |
|
749 |
} |
|
0 | 750 |
|
751 |
$params = array_merge( |
|
9 | 752 |
array( |
753 |
array_merge( |
|
754 |
$sidebar, |
|
755 |
array( |
|
756 |
'widget_id' => $id, |
|
757 |
'widget_name' => $wp_registered_widgets[ $id ]['name'], |
|
758 |
) |
|
759 |
), |
|
760 |
), |
|
761 |
(array) $wp_registered_widgets[ $id ]['params'] |
|
0 | 762 |
); |
763 |
||
16 | 764 |
// Substitute HTML `id` and `class` attributes into `before_widget`. |
0 | 765 |
$classname_ = ''; |
9 | 766 |
foreach ( (array) $wp_registered_widgets[ $id ]['classname'] as $cn ) { |
767 |
if ( is_string( $cn ) ) { |
|
0 | 768 |
$classname_ .= '_' . $cn; |
9 | 769 |
} elseif ( is_object( $cn ) ) { |
770 |
$classname_ .= '_' . get_class( $cn ); |
|
771 |
} |
|
0 | 772 |
} |
18 | 773 |
$classname_ = ltrim( $classname_, '_' ); |
774 |
||
775 |
$params[0]['before_widget'] = sprintf( |
|
776 |
$params[0]['before_widget'], |
|
777 |
str_replace( '\\', '_', $id ), |
|
778 |
$classname_ |
|
779 |
); |
|
0 | 780 |
|
5 | 781 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
782 |
* Filters the parameters passed to a widget's display callback. |
5 | 783 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
784 |
* Note: The filter is evaluated on both the front end and back end, |
5 | 785 |
* including for the Inactive Widgets sidebar on the Widgets screen. |
786 |
* |
|
787 |
* @since 2.5.0 |
|
788 |
* |
|
789 |
* @see register_sidebar() |
|
790 |
* |
|
791 |
* @param array $params { |
|
792 |
* @type array $args { |
|
793 |
* An array of widget display arguments. |
|
794 |
* |
|
795 |
* @type string $name Name of the sidebar the widget is assigned to. |
|
796 |
* @type string $id ID of the sidebar the widget is assigned to. |
|
797 |
* @type string $description The sidebar description. |
|
798 |
* @type string $class CSS class applied to the sidebar container. |
|
799 |
* @type string $before_widget HTML markup to prepend to each widget in the sidebar. |
|
800 |
* @type string $after_widget HTML markup to append to each widget in the sidebar. |
|
801 |
* @type string $before_title HTML markup to prepend to the widget title when displayed. |
|
802 |
* @type string $after_title HTML markup to append to the widget title when displayed. |
|
803 |
* @type string $widget_id ID of the widget. |
|
804 |
* @type string $widget_name Name of the widget. |
|
805 |
* } |
|
806 |
* @type array $widget_args { |
|
807 |
* An array of multi-widget arguments. |
|
808 |
* |
|
809 |
* @type int $number Number increment used for multiples of the same widget. |
|
810 |
* } |
|
811 |
* } |
|
812 |
*/ |
|
0 | 813 |
$params = apply_filters( 'dynamic_sidebar_params', $params ); |
814 |
||
9 | 815 |
$callback = $wp_registered_widgets[ $id ]['callback']; |
0 | 816 |
|
5 | 817 |
/** |
818 |
* Fires before a widget's display callback is called. |
|
819 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
820 |
* Note: The action fires on both the front end and back end, including |
5 | 821 |
* for widgets in the Inactive Widgets sidebar on the Widgets screen. |
822 |
* |
|
823 |
* The action is not fired for empty sidebars. |
|
824 |
* |
|
825 |
* @since 3.0.0 |
|
826 |
* |
|
18 | 827 |
* @param array $widget { |
5 | 828 |
* An associative array of widget arguments. |
829 |
* |
|
16 | 830 |
* @type string $name Name of the widget. |
831 |
* @type string $id Widget ID. |
|
18 | 832 |
* @type callable $callback When the hook is fired on the front end, `$callback` is an array |
833 |
* containing the widget object. Fired on the back end, `$callback` |
|
834 |
* is 'wp_widget_control', see `$_callback`. |
|
16 | 835 |
* @type array $params An associative array of multi-widget arguments. |
836 |
* @type string $classname CSS class applied to the widget container. |
|
837 |
* @type string $description The widget description. |
|
18 | 838 |
* @type array $_callback When the hook is fired on the back end, `$_callback` is populated |
839 |
* with an array containing the widget object, see `$callback`. |
|
5 | 840 |
* } |
841 |
*/ |
|
842 |
do_action( 'dynamic_sidebar', $wp_registered_widgets[ $id ] ); |
|
0 | 843 |
|
9 | 844 |
if ( is_callable( $callback ) ) { |
845 |
call_user_func_array( $callback, $params ); |
|
0 | 846 |
$did_one = true; |
847 |
} |
|
848 |
} |
|
849 |
||
18 | 850 |
if ( ! is_admin() && ! empty( $sidebar['after_sidebar'] ) ) { |
851 |
echo $sidebar['after_sidebar']; |
|
852 |
} |
|
853 |
||
5 | 854 |
/** |
855 |
* Fires after widgets are rendered in a dynamic sidebar. |
|
856 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
857 |
* Note: The action also fires for empty sidebars, and on both the front end |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
858 |
* and back end, including the Inactive Widgets sidebar on the Widgets screen. |
5 | 859 |
* |
860 |
* @since 3.9.0 |
|
861 |
* |
|
862 |
* @param int|string $index Index, name, or ID of the dynamic sidebar. |
|
863 |
* @param bool $has_widgets Whether the sidebar is populated with widgets. |
|
864 |
* Default true. |
|
865 |
*/ |
|
866 |
do_action( 'dynamic_sidebar_after', $index, true ); |
|
867 |
||
868 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
869 |
* Filters whether a sidebar has widgets. |
5 | 870 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
871 |
* Note: The filter is also evaluated for empty sidebars, and on both the front end |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
872 |
* and back end, including the Inactive Widgets sidebar on the Widgets screen. |
5 | 873 |
* |
874 |
* @since 3.9.0 |
|
875 |
* |
|
876 |
* @param bool $did_one Whether at least one widget was rendered in the sidebar. |
|
877 |
* Default false. |
|
878 |
* @param int|string $index Index, name, or ID of the dynamic sidebar. |
|
879 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
880 |
return apply_filters( 'dynamic_sidebar_has_widgets', $did_one, $index ); |
0 | 881 |
} |
882 |
||
883 |
/** |
|
9 | 884 |
* Determines whether a given widget is displayed on the front end. |
0 | 885 |
* |
886 |
* Either $callback or $id_base can be used |
|
887 |
* $id_base is the first argument when extending WP_Widget class |
|
888 |
* Without the optional $widget_id parameter, returns the ID of the first sidebar |
|
889 |
* in which the first instance of the widget with the given callback or $id_base is found. |
|
890 |
* With the $widget_id parameter, returns the ID of the sidebar where |
|
891 |
* the widget with that callback/$id_base AND that ID is found. |
|
892 |
* |
|
893 |
* NOTE: $widget_id and $id_base are the same for single widgets. To be effective |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
894 |
* this function has to run after widgets have initialized, at action {@see 'init'} or later. |
0 | 895 |
* |
9 | 896 |
* For more information on this and similar theme functions, check out |
897 |
* the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ |
|
898 |
* Conditional Tags} article in the Theme Developer Handbook. |
|
899 |
* |
|
0 | 900 |
* @since 2.2.0 |
901 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
902 |
* @global array $wp_registered_widgets The registered widgets. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
903 |
* |
18 | 904 |
* @param callable|false $callback Optional. Widget callback to check. Default false. |
905 |
* @param string|false $widget_id Optional. Widget ID. Optional, but needed for checking. |
|
906 |
* Default false. |
|
907 |
* @param string|false $id_base Optional. The base ID of a widget created by extending WP_Widget. |
|
908 |
* Default false. |
|
909 |
* @param bool $skip_inactive Optional. Whether to check in 'wp_inactive_widgets'. |
|
910 |
* Default true. |
|
911 |
* @return string|false ID of the sidebar in which the widget is active, |
|
912 |
* false if the widget is not active. |
|
0 | 913 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
914 |
function is_active_widget( $callback = false, $widget_id = false, $id_base = false, $skip_inactive = true ) { |
0 | 915 |
global $wp_registered_widgets; |
916 |
||
917 |
$sidebars_widgets = wp_get_sidebars_widgets(); |
|
918 |
||
9 | 919 |
if ( is_array( $sidebars_widgets ) ) { |
0 | 920 |
foreach ( $sidebars_widgets as $sidebar => $widgets ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
921 |
if ( $skip_inactive && ( 'wp_inactive_widgets' === $sidebar || str_starts_with( $sidebar, 'orphaned_widgets' ) ) ) { |
0 | 922 |
continue; |
5 | 923 |
} |
0 | 924 |
|
9 | 925 |
if ( is_array( $widgets ) ) { |
0 | 926 |
foreach ( $widgets as $widget ) { |
16 | 927 |
if ( ( $callback && isset( $wp_registered_widgets[ $widget ]['callback'] ) && $wp_registered_widgets[ $widget ]['callback'] === $callback ) || ( $id_base && _get_widget_id_base( $widget ) === $id_base ) ) { |
928 |
if ( ! $widget_id || $widget_id === $wp_registered_widgets[ $widget ]['id'] ) { |
|
0 | 929 |
return $sidebar; |
9 | 930 |
} |
0 | 931 |
} |
932 |
} |
|
933 |
} |
|
934 |
} |
|
935 |
} |
|
936 |
return false; |
|
937 |
} |
|
938 |
||
939 |
/** |
|
9 | 940 |
* Determines whether the dynamic sidebar is enabled and used by the theme. |
941 |
* |
|
942 |
* For more information on this and similar theme functions, check out |
|
943 |
* the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ |
|
944 |
* Conditional Tags} article in the Theme Developer Handbook. |
|
0 | 945 |
* |
946 |
* @since 2.2.0 |
|
947 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
948 |
* @global array $wp_registered_widgets The registered widgets. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
949 |
* @global array $wp_registered_sidebars The registered sidebars. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
950 |
* |
16 | 951 |
* @return bool True if using widgets, false otherwise. |
0 | 952 |
*/ |
953 |
function is_dynamic_sidebar() { |
|
954 |
global $wp_registered_widgets, $wp_registered_sidebars; |
|
16 | 955 |
|
9 | 956 |
$sidebars_widgets = get_option( 'sidebars_widgets' ); |
16 | 957 |
|
0 | 958 |
foreach ( (array) $wp_registered_sidebars as $index => $sidebar ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
959 |
if ( ! empty( $sidebars_widgets[ $index ] ) ) { |
9 | 960 |
foreach ( (array) $sidebars_widgets[ $index ] as $widget ) { |
961 |
if ( array_key_exists( $widget, $wp_registered_widgets ) ) { |
|
0 | 962 |
return true; |
9 | 963 |
} |
964 |
} |
|
0 | 965 |
} |
966 |
} |
|
16 | 967 |
|
0 | 968 |
return false; |
969 |
} |
|
970 |
||
971 |
/** |
|
16 | 972 |
* Determines whether a sidebar contains widgets. |
9 | 973 |
* |
974 |
* For more information on this and similar theme functions, check out |
|
975 |
* the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ |
|
976 |
* Conditional Tags} article in the Theme Developer Handbook. |
|
0 | 977 |
* |
5 | 978 |
* @since 2.8.0 |
0 | 979 |
* |
5 | 980 |
* @param string|int $index Sidebar name, id or number to check. |
16 | 981 |
* @return bool True if the sidebar has widgets, false otherwise. |
0 | 982 |
*/ |
983 |
function is_active_sidebar( $index ) { |
|
9 | 984 |
$index = ( is_int( $index ) ) ? "sidebar-$index" : sanitize_title( $index ); |
985 |
$sidebars_widgets = wp_get_sidebars_widgets(); |
|
986 |
$is_active_sidebar = ! empty( $sidebars_widgets[ $index ] ); |
|
5 | 987 |
|
988 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
989 |
* Filters whether a dynamic sidebar is considered "active". |
5 | 990 |
* |
991 |
* @since 3.9.0 |
|
992 |
* |
|
993 |
* @param bool $is_active_sidebar Whether or not the sidebar should be considered "active". |
|
994 |
* In other words, whether the sidebar contains any widgets. |
|
995 |
* @param int|string $index Index, name, or ID of the dynamic sidebar. |
|
996 |
*/ |
|
997 |
return apply_filters( 'is_active_sidebar', $is_active_sidebar, $index ); |
|
0 | 998 |
} |
999 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1000 |
// |
16 | 1001 |
// Internal Functions. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1002 |
// |
0 | 1003 |
|
1004 |
/** |
|
5 | 1005 |
* Retrieve full list of sidebars and their widget instance IDs. |
0 | 1006 |
* |
1007 |
* Will upgrade sidebar widget list, if needed. Will also save updated list, if |
|
1008 |
* needed. |
|
1009 |
* |
|
1010 |
* @since 2.2.0 |
|
1011 |
* @access private |
|
1012 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1013 |
* @global array $_wp_sidebars_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1014 |
* @global array $sidebars_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1015 |
* |
5 | 1016 |
* @param bool $deprecated Not used (argument deprecated). |
0 | 1017 |
* @return array Upgraded list of widgets to version 3 array format when called from the admin. |
1018 |
*/ |
|
5 | 1019 |
function wp_get_sidebars_widgets( $deprecated = true ) { |
16 | 1020 |
if ( true !== $deprecated ) { |
0 | 1021 |
_deprecated_argument( __FUNCTION__, '2.8.1' ); |
9 | 1022 |
} |
0 | 1023 |
|
1024 |
global $_wp_sidebars_widgets, $sidebars_widgets; |
|
1025 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1026 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1027 |
* If loading from front page, consult $_wp_sidebars_widgets rather than options |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1028 |
* to see if wp_convert_widget_settings() has made manipulations in memory. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1029 |
*/ |
9 | 1030 |
if ( ! is_admin() ) { |
1031 |
if ( empty( $_wp_sidebars_widgets ) ) { |
|
1032 |
$_wp_sidebars_widgets = get_option( 'sidebars_widgets', array() ); |
|
1033 |
} |
|
0 | 1034 |
|
1035 |
$sidebars_widgets = $_wp_sidebars_widgets; |
|
1036 |
} else { |
|
9 | 1037 |
$sidebars_widgets = get_option( 'sidebars_widgets', array() ); |
0 | 1038 |
} |
1039 |
||
9 | 1040 |
if ( is_array( $sidebars_widgets ) && isset( $sidebars_widgets['array_version'] ) ) { |
1041 |
unset( $sidebars_widgets['array_version'] ); |
|
1042 |
} |
|
0 | 1043 |
|
5 | 1044 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1045 |
* Filters the list of sidebars and their widgets. |
5 | 1046 |
* |
1047 |
* @since 2.7.0 |
|
1048 |
* |
|
1049 |
* @param array $sidebars_widgets An associative array of sidebars and their widgets. |
|
1050 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1051 |
return apply_filters( 'sidebars_widgets', $sidebars_widgets ); |
0 | 1052 |
} |
1053 |
||
1054 |
/** |
|
19 | 1055 |
* Retrieves the registered sidebar with the given ID. |
1056 |
* |
|
1057 |
* @since 5.9.0 |
|
1058 |
* |
|
1059 |
* @global array $wp_registered_sidebars The registered sidebars. |
|
1060 |
* |
|
1061 |
* @param string $id The sidebar ID. |
|
1062 |
* @return array|null The discovered sidebar, or null if it is not registered. |
|
1063 |
*/ |
|
1064 |
function wp_get_sidebar( $id ) { |
|
1065 |
global $wp_registered_sidebars; |
|
1066 |
||
1067 |
foreach ( (array) $wp_registered_sidebars as $sidebar ) { |
|
1068 |
if ( $sidebar['id'] === $id ) { |
|
1069 |
return $sidebar; |
|
1070 |
} |
|
1071 |
} |
|
1072 |
||
1073 |
if ( 'wp_inactive_widgets' === $id ) { |
|
1074 |
return array( |
|
1075 |
'id' => 'wp_inactive_widgets', |
|
1076 |
'name' => __( 'Inactive widgets' ), |
|
1077 |
); |
|
1078 |
} |
|
1079 |
||
1080 |
return null; |
|
1081 |
} |
|
1082 |
||
1083 |
/** |
|
0 | 1084 |
* Set the sidebar widget option to update sidebars. |
1085 |
* |
|
1086 |
* @since 2.2.0 |
|
1087 |
* @access private |
|
1088 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1089 |
* @global array $_wp_sidebars_widgets |
0 | 1090 |
* @param array $sidebars_widgets Sidebar widgets and their settings. |
1091 |
*/ |
|
1092 |
function wp_set_sidebars_widgets( $sidebars_widgets ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1093 |
global $_wp_sidebars_widgets; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1094 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1095 |
// Clear cached value used in wp_get_sidebars_widgets(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1096 |
$_wp_sidebars_widgets = null; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1097 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1098 |
if ( ! isset( $sidebars_widgets['array_version'] ) ) { |
0 | 1099 |
$sidebars_widgets['array_version'] = 3; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1100 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1101 |
|
0 | 1102 |
update_option( 'sidebars_widgets', $sidebars_widgets ); |
1103 |
} |
|
1104 |
||
1105 |
/** |
|
1106 |
* Retrieve default registered sidebars list. |
|
1107 |
* |
|
1108 |
* @since 2.2.0 |
|
1109 |
* @access private |
|
1110 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1111 |
* @global array $wp_registered_sidebars The registered sidebars. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1112 |
* |
0 | 1113 |
* @return array |
1114 |
*/ |
|
1115 |
function wp_get_widget_defaults() { |
|
1116 |
global $wp_registered_sidebars; |
|
1117 |
||
1118 |
$defaults = array(); |
|
1119 |
||
9 | 1120 |
foreach ( (array) $wp_registered_sidebars as $index => $sidebar ) { |
1121 |
$defaults[ $index ] = array(); |
|
1122 |
} |
|
0 | 1123 |
|
1124 |
return $defaults; |
|
1125 |
} |
|
1126 |
||
1127 |
/** |
|
16 | 1128 |
* Converts the widget settings from single to multi-widget format. |
0 | 1129 |
* |
1130 |
* @since 2.8.0 |
|
1131 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1132 |
* @global array $_wp_sidebars_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1133 |
* |
16 | 1134 |
* @param string $base_name Root ID for all widgets of this type. |
1135 |
* @param string $option_name Option name for this widget type. |
|
1136 |
* @param array $settings The array of widget instance settings. |
|
1137 |
* @return array The array of widget settings converted to multi-widget format. |
|
0 | 1138 |
*/ |
9 | 1139 |
function wp_convert_widget_settings( $base_name, $option_name, $settings ) { |
0 | 1140 |
// This test may need expanding. |
16 | 1141 |
$single = false; |
1142 |
$changed = false; |
|
1143 |
||
9 | 1144 |
if ( empty( $settings ) ) { |
0 | 1145 |
$single = true; |
1146 |
} else { |
|
9 | 1147 |
foreach ( array_keys( $settings ) as $number ) { |
16 | 1148 |
if ( 'number' === $number ) { |
0 | 1149 |
continue; |
9 | 1150 |
} |
1151 |
if ( ! is_numeric( $number ) ) { |
|
0 | 1152 |
$single = true; |
1153 |
break; |
|
1154 |
} |
|
1155 |
} |
|
1156 |
} |
|
1157 |
||
1158 |
if ( $single ) { |
|
1159 |
$settings = array( 2 => $settings ); |
|
1160 |
||
16 | 1161 |
// If loading from the front page, update sidebar in memory but don't save to options. |
0 | 1162 |
if ( is_admin() ) { |
9 | 1163 |
$sidebars_widgets = get_option( 'sidebars_widgets' ); |
0 | 1164 |
} else { |
9 | 1165 |
if ( empty( $GLOBALS['_wp_sidebars_widgets'] ) ) { |
1166 |
$GLOBALS['_wp_sidebars_widgets'] = get_option( 'sidebars_widgets', array() ); |
|
1167 |
} |
|
0 | 1168 |
$sidebars_widgets = &$GLOBALS['_wp_sidebars_widgets']; |
1169 |
} |
|
1170 |
||
1171 |
foreach ( (array) $sidebars_widgets as $index => $sidebar ) { |
|
9 | 1172 |
if ( is_array( $sidebar ) ) { |
0 | 1173 |
foreach ( $sidebar as $i => $name ) { |
16 | 1174 |
if ( $base_name === $name ) { |
9 | 1175 |
$sidebars_widgets[ $index ][ $i ] = "$name-2"; |
1176 |
$changed = true; |
|
0 | 1177 |
break 2; |
1178 |
} |
|
1179 |
} |
|
1180 |
} |
|
1181 |
} |
|
1182 |
||
9 | 1183 |
if ( is_admin() && $changed ) { |
1184 |
update_option( 'sidebars_widgets', $sidebars_widgets ); |
|
1185 |
} |
|
0 | 1186 |
} |
1187 |
||
1188 |
$settings['_multiwidget'] = 1; |
|
9 | 1189 |
if ( is_admin() ) { |
0 | 1190 |
update_option( $option_name, $settings ); |
9 | 1191 |
} |
0 | 1192 |
|
1193 |
return $settings; |
|
1194 |
} |
|
1195 |
||
1196 |
/** |
|
5 | 1197 |
* Output an arbitrary widget as a template tag. |
1198 |
* |
|
1199 |
* @since 2.8.0 |
|
0 | 1200 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1201 |
* @global WP_Widget_Factory $wp_widget_factory |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1202 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1203 |
* @param string $widget The widget's PHP class name (see class-wp-widget.php). |
5 | 1204 |
* @param array $instance Optional. The widget's instance settings. Default empty array. |
1205 |
* @param array $args { |
|
1206 |
* Optional. Array of arguments to configure the display of the widget. |
|
0 | 1207 |
* |
5 | 1208 |
* @type string $before_widget HTML content that will be prepended to the widget's HTML output. |
1209 |
* Default `<div class="widget %s">`, where `%s` is the widget's class name. |
|
1210 |
* @type string $after_widget HTML content that will be appended to the widget's HTML output. |
|
1211 |
* Default `</div>`. |
|
1212 |
* @type string $before_title HTML content that will be prepended to the widget's title when displayed. |
|
1213 |
* Default `<h2 class="widgettitle">`. |
|
1214 |
* @type string $after_title HTML content that will be appended to the widget's title when displayed. |
|
1215 |
* Default `</h2>`. |
|
1216 |
* } |
|
1217 |
*/ |
|
1218 |
function the_widget( $widget, $instance = array(), $args = array() ) { |
|
0 | 1219 |
global $wp_widget_factory; |
1220 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1221 |
if ( ! isset( $wp_widget_factory->widgets[ $widget ] ) ) { |
16 | 1222 |
_doing_it_wrong( |
1223 |
__FUNCTION__, |
|
1224 |
sprintf( |
|
1225 |
/* translators: %s: register_widget() */ |
|
1226 |
__( 'Widgets need to be registered using %s, before they can be displayed.' ), |
|
1227 |
'<code>register_widget()</code>' |
|
1228 |
), |
|
1229 |
'4.9.0' |
|
1230 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1231 |
return; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1232 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1233 |
|
9 | 1234 |
$widget_obj = $wp_widget_factory->widgets[ $widget ]; |
5 | 1235 |
if ( ! ( $widget_obj instanceof WP_Widget ) ) { |
0 | 1236 |
return; |
5 | 1237 |
} |
0 | 1238 |
|
9 | 1239 |
$default_args = array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1240 |
'before_widget' => '<div class="widget %s">', |
9 | 1241 |
'after_widget' => '</div>', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1242 |
'before_title' => '<h2 class="widgettitle">', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1243 |
'after_title' => '</h2>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1244 |
); |
9 | 1245 |
$args = wp_parse_args( $args, $default_args ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1246 |
$args['before_widget'] = sprintf( $args['before_widget'], $widget_obj->widget_options['classname'] ); |
0 | 1247 |
|
9 | 1248 |
$instance = wp_parse_args( $instance ); |
0 | 1249 |
|
16 | 1250 |
/** This filter is documented in wp-includes/class-wp-widget.php */ |
1251 |
$instance = apply_filters( 'widget_display_callback', $instance, $widget_obj, $args ); |
|
1252 |
||
1253 |
if ( false === $instance ) { |
|
1254 |
return; |
|
1255 |
} |
|
1256 |
||
5 | 1257 |
/** |
1258 |
* Fires before rendering the requested widget. |
|
1259 |
* |
|
1260 |
* @since 3.0.0 |
|
1261 |
* |
|
1262 |
* @param string $widget The widget's class name. |
|
1263 |
* @param array $instance The current widget instance's settings. |
|
1264 |
* @param array $args An array of the widget's sidebar arguments. |
|
1265 |
*/ |
|
0 | 1266 |
do_action( 'the_widget', $widget, $instance, $args ); |
1267 |
||
9 | 1268 |
$widget_obj->_set( -1 ); |
1269 |
$widget_obj->widget( $args, $instance ); |
|
0 | 1270 |
} |
1271 |
||
1272 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1273 |
* Retrieves the widget ID base value. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1274 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1275 |
* @since 2.8.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1276 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1277 |
* @param string $id Widget ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1278 |
* @return string Widget ID base. |
0 | 1279 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1280 |
function _get_widget_id_base( $id ) { |
0 | 1281 |
return preg_replace( '/-[0-9]+$/', '', $id ); |
1282 |
} |
|
1283 |
||
1284 |
/** |
|
1285 |
* Handle sidebars config after theme change |
|
1286 |
* |
|
1287 |
* @access private |
|
1288 |
* @since 3.3.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1289 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1290 |
* @global array $sidebars_widgets |
0 | 1291 |
*/ |
1292 |
function _wp_sidebars_changed() { |
|
1293 |
global $sidebars_widgets; |
|
1294 |
||
9 | 1295 |
if ( ! is_array( $sidebars_widgets ) ) { |
0 | 1296 |
$sidebars_widgets = wp_get_sidebars_widgets(); |
9 | 1297 |
} |
0 | 1298 |
|
9 | 1299 |
retrieve_widgets( true ); |
0 | 1300 |
} |
1301 |
||
5 | 1302 |
/** |
19 | 1303 |
* Validates and remaps any "orphaned" widgets to wp_inactive_widgets sidebar, |
1304 |
* and saves the widget settings. This has to run at least on each theme change. |
|
1305 |
* |
|
1306 |
* For example, let's say theme A has a "footer" sidebar, and theme B doesn't have one. |
|
1307 |
* After switching from theme A to theme B, all the widgets previously assigned |
|
1308 |
* to the footer would be inaccessible. This function detects this scenario, and |
|
1309 |
* moves all the widgets previously assigned to the footer under wp_inactive_widgets. |
|
1310 |
* |
|
1311 |
* Despite the word "retrieve" in the name, this function actually updates the database |
|
1312 |
* and the global `$sidebars_widgets`. For that reason it should not be run on front end, |
|
1313 |
* unless the `$theme_changed` value is 'customize' (to bypass the database write). |
|
5 | 1314 |
* |
1315 |
* @since 2.8.0 |
|
1316 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1317 |
* @global array $wp_registered_sidebars The registered sidebars. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1318 |
* @global array $sidebars_widgets |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1319 |
* @global array $wp_registered_widgets The registered widgets. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1320 |
* |
5 | 1321 |
* @param string|bool $theme_changed Whether the theme was changed as a boolean. A value |
1322 |
* of 'customize' defers updates for the Customizer. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1323 |
* @return array Updated sidebars widgets. |
5 | 1324 |
*/ |
1325 |
function retrieve_widgets( $theme_changed = false ) { |
|
0 | 1326 |
global $wp_registered_sidebars, $sidebars_widgets, $wp_registered_widgets; |
1327 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1328 |
$registered_sidebars_keys = array_keys( $wp_registered_sidebars ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1329 |
$registered_widgets_ids = array_keys( $wp_registered_widgets ); |
0 | 1330 |
|
9 | 1331 |
if ( ! is_array( get_theme_mod( 'sidebars_widgets' ) ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1332 |
if ( empty( $sidebars_widgets ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1333 |
return array(); |
0 | 1334 |
} |
1335 |
||
1336 |
unset( $sidebars_widgets['array_version'] ); |
|
1337 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1338 |
$sidebars_widgets_keys = array_keys( $sidebars_widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1339 |
sort( $sidebars_widgets_keys ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1340 |
sort( $registered_sidebars_keys ); |
0 | 1341 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1342 |
if ( $sidebars_widgets_keys === $registered_sidebars_keys ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1343 |
$sidebars_widgets = _wp_remove_unregistered_widgets( $sidebars_widgets, $registered_widgets_ids ); |
0 | 1344 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1345 |
return $sidebars_widgets; |
0 | 1346 |
} |
1347 |
} |
|
1348 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1349 |
// Discard invalid, theme-specific widgets from sidebars. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1350 |
$sidebars_widgets = _wp_remove_unregistered_widgets( $sidebars_widgets, $registered_widgets_ids ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1351 |
$sidebars_widgets = wp_map_sidebars_widgets( $sidebars_widgets ); |
0 | 1352 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1353 |
// Find hidden/lost multi-widget instances. |
18 | 1354 |
$shown_widgets = array_merge( ...array_values( $sidebars_widgets ) ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1355 |
$lost_widgets = array_diff( $registered_widgets_ids, $shown_widgets ); |
0 | 1356 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1357 |
foreach ( $lost_widgets as $key => $widget_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1358 |
$number = preg_replace( '/.+?-([0-9]+)$/', '$1', $widget_id ); |
0 | 1359 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1360 |
// Only keep active and default widgets. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1361 |
if ( is_numeric( $number ) && (int) $number < 2 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1362 |
unset( $lost_widgets[ $key ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1363 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1364 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1365 |
$sidebars_widgets['wp_inactive_widgets'] = array_merge( $lost_widgets, (array) $sidebars_widgets['wp_inactive_widgets'] ); |
0 | 1366 |
|
5 | 1367 |
if ( 'customize' !== $theme_changed ) { |
19 | 1368 |
// Update the widgets settings in the database. |
5 | 1369 |
wp_set_sidebars_widgets( $sidebars_widgets ); |
1370 |
} |
|
0 | 1371 |
|
1372 |
return $sidebars_widgets; |
|
1373 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1374 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1375 |
/** |
16 | 1376 |
* Compares a list of sidebars with their widgets against an allowed list. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1377 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1378 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1379 |
* @since 4.9.2 Always tries to restore widget assignments from previous data, not just if sidebars needed mapping. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1380 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1381 |
* @global array $wp_registered_sidebars The registered sidebars. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1382 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1383 |
* @param array $existing_sidebars_widgets List of sidebars and their widget instance IDs. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1384 |
* @return array Mapped sidebars widgets. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1385 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1386 |
function wp_map_sidebars_widgets( $existing_sidebars_widgets ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1387 |
global $wp_registered_sidebars; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1388 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1389 |
$new_sidebars_widgets = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1390 |
'wp_inactive_widgets' => array(), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1391 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1392 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1393 |
// Short-circuit if there are no sidebars to map. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1394 |
if ( ! is_array( $existing_sidebars_widgets ) || empty( $existing_sidebars_widgets ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1395 |
return $new_sidebars_widgets; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1396 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1397 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1398 |
foreach ( $existing_sidebars_widgets as $sidebar => $widgets ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1399 |
if ( 'wp_inactive_widgets' === $sidebar || str_starts_with( $sidebar, 'orphaned_widgets' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1400 |
$new_sidebars_widgets['wp_inactive_widgets'] = array_merge( $new_sidebars_widgets['wp_inactive_widgets'], (array) $widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1401 |
unset( $existing_sidebars_widgets[ $sidebar ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1402 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1403 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1404 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1405 |
// If old and new theme have just one sidebar, map it and we're done. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1406 |
if ( 1 === count( $existing_sidebars_widgets ) && 1 === count( $wp_registered_sidebars ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1407 |
$new_sidebars_widgets[ key( $wp_registered_sidebars ) ] = array_pop( $existing_sidebars_widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1408 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1409 |
return $new_sidebars_widgets; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1410 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1411 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1412 |
// Map locations with the same slug. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1413 |
$existing_sidebars = array_keys( $existing_sidebars_widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1414 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1415 |
foreach ( $wp_registered_sidebars as $sidebar => $name ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1416 |
if ( in_array( $sidebar, $existing_sidebars, true ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1417 |
$new_sidebars_widgets[ $sidebar ] = $existing_sidebars_widgets[ $sidebar ]; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1418 |
unset( $existing_sidebars_widgets[ $sidebar ] ); |
9 | 1419 |
} elseif ( ! array_key_exists( $sidebar, $new_sidebars_widgets ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1420 |
$new_sidebars_widgets[ $sidebar ] = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1421 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1422 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1423 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1424 |
// If there are more sidebars, try to map them. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1425 |
if ( ! empty( $existing_sidebars_widgets ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1426 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1427 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1428 |
* If old and new theme both have sidebars that contain phrases |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1429 |
* from within the same group, make an educated guess and map it. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1430 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1431 |
$common_slug_groups = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1432 |
array( 'sidebar', 'primary', 'main', 'right' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1433 |
array( 'second', 'left' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1434 |
array( 'sidebar-2', 'footer', 'bottom' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1435 |
array( 'header', 'top' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1436 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1437 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1438 |
// Go through each group... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1439 |
foreach ( $common_slug_groups as $slug_group ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1440 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1441 |
// ...and see if any of these slugs... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1442 |
foreach ( $slug_group as $slug ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1443 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1444 |
// ...and any of the new sidebars... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1445 |
foreach ( $wp_registered_sidebars as $new_sidebar => $args ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1446 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1447 |
// ...actually match! |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1448 |
if ( false === stripos( $new_sidebar, $slug ) && false === stripos( $slug, $new_sidebar ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1449 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1450 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1451 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1452 |
// Then see if any of the existing sidebars... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1453 |
foreach ( $existing_sidebars_widgets as $sidebar => $widgets ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1454 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1455 |
// ...and any slug in the same group... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1456 |
foreach ( $slug_group as $slug ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1457 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1458 |
// ... have a match as well. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1459 |
if ( false === stripos( $sidebar, $slug ) && false === stripos( $slug, $sidebar ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1460 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1461 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1462 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1463 |
// Make sure this sidebar wasn't mapped and removed previously. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1464 |
if ( ! empty( $existing_sidebars_widgets[ $sidebar ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1465 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1466 |
// We have a match that can be mapped! |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1467 |
$new_sidebars_widgets[ $new_sidebar ] = array_merge( $new_sidebars_widgets[ $new_sidebar ], $existing_sidebars_widgets[ $sidebar ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1468 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1469 |
// Remove the mapped sidebar so it can't be mapped again. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1470 |
unset( $existing_sidebars_widgets[ $sidebar ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1471 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1472 |
// Go back and check the next new sidebar. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1473 |
continue 3; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1474 |
} |
16 | 1475 |
} // End foreach ( $slug_group as $slug ). |
1476 |
} // End foreach ( $existing_sidebars_widgets as $sidebar => $widgets ). |
|
1477 |
} // End foreach ( $wp_registered_sidebars as $new_sidebar => $args ). |
|
1478 |
} // End foreach ( $slug_group as $slug ). |
|
1479 |
} // End foreach ( $common_slug_groups as $slug_group ). |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1480 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1481 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1482 |
// Move any left over widgets to inactive sidebar. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1483 |
foreach ( $existing_sidebars_widgets as $widgets ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1484 |
if ( is_array( $widgets ) && ! empty( $widgets ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1485 |
$new_sidebars_widgets['wp_inactive_widgets'] = array_merge( $new_sidebars_widgets['wp_inactive_widgets'], $widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1486 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1487 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1488 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1489 |
// Sidebars_widgets settings from when this theme was previously active. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1490 |
$old_sidebars_widgets = get_theme_mod( 'sidebars_widgets' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1491 |
$old_sidebars_widgets = isset( $old_sidebars_widgets['data'] ) ? $old_sidebars_widgets['data'] : false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1492 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1493 |
if ( is_array( $old_sidebars_widgets ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1494 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1495 |
// Remove empty sidebars, no need to map those. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1496 |
$old_sidebars_widgets = array_filter( $old_sidebars_widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1497 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1498 |
// Only check sidebars that are empty or have not been mapped to yet. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1499 |
foreach ( $new_sidebars_widgets as $new_sidebar => $new_widgets ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1500 |
if ( array_key_exists( $new_sidebar, $old_sidebars_widgets ) && ! empty( $new_widgets ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1501 |
unset( $old_sidebars_widgets[ $new_sidebar ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1502 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1503 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1504 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1505 |
// Remove orphaned widgets, we're only interested in previously active sidebars. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1506 |
foreach ( $old_sidebars_widgets as $sidebar => $widgets ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1507 |
if ( str_starts_with( $sidebar, 'orphaned_widgets' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1508 |
unset( $old_sidebars_widgets[ $sidebar ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1509 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1510 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1511 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1512 |
$old_sidebars_widgets = _wp_remove_unregistered_widgets( $old_sidebars_widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1513 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1514 |
if ( ! empty( $old_sidebars_widgets ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1515 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1516 |
// Go through each remaining sidebar... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1517 |
foreach ( $old_sidebars_widgets as $old_sidebar => $old_widgets ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1518 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1519 |
// ...and check every new sidebar... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1520 |
foreach ( $new_sidebars_widgets as $new_sidebar => $new_widgets ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1521 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1522 |
// ...for every widget we're trying to revive. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1523 |
foreach ( $old_widgets as $key => $widget_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1524 |
$active_key = array_search( $widget_id, $new_widgets, true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1525 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1526 |
// If the widget is used elsewhere... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1527 |
if ( false !== $active_key ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1528 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1529 |
// ...and that elsewhere is inactive widgets... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1530 |
if ( 'wp_inactive_widgets' === $new_sidebar ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1531 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1532 |
// ...remove it from there and keep the active version... |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1533 |
unset( $new_sidebars_widgets['wp_inactive_widgets'][ $active_key ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1534 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1535 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1536 |
// ...otherwise remove it from the old sidebar and keep it in the new one. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1537 |
unset( $old_sidebars_widgets[ $old_sidebar ][ $key ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1538 |
} |
16 | 1539 |
} // End if ( $active_key ). |
1540 |
} // End foreach ( $old_widgets as $key => $widget_id ). |
|
1541 |
} // End foreach ( $new_sidebars_widgets as $new_sidebar => $new_widgets ). |
|
1542 |
} // End foreach ( $old_sidebars_widgets as $old_sidebar => $old_widgets ). |
|
1543 |
} // End if ( ! empty( $old_sidebars_widgets ) ). |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1544 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1545 |
// Restore widget settings from when theme was previously active. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1546 |
$new_sidebars_widgets = array_merge( $new_sidebars_widgets, $old_sidebars_widgets ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1547 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1548 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1549 |
return $new_sidebars_widgets; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1550 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1551 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1552 |
/** |
16 | 1553 |
* Compares a list of sidebars with their widgets against an allowed list. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1554 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1555 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1556 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1557 |
* @global array $wp_registered_widgets The registered widgets. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1558 |
* |
16 | 1559 |
* @param array $sidebars_widgets List of sidebars and their widget instance IDs. |
1560 |
* @param array $allowed_widget_ids Optional. List of widget IDs to compare against. Default: Registered widgets. |
|
1561 |
* @return array Sidebars with allowed widgets. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1562 |
*/ |
16 | 1563 |
function _wp_remove_unregistered_widgets( $sidebars_widgets, $allowed_widget_ids = array() ) { |
1564 |
if ( empty( $allowed_widget_ids ) ) { |
|
1565 |
$allowed_widget_ids = array_keys( $GLOBALS['wp_registered_widgets'] ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1566 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1567 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1568 |
foreach ( $sidebars_widgets as $sidebar => $widgets ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1569 |
if ( is_array( $widgets ) ) { |
16 | 1570 |
$sidebars_widgets[ $sidebar ] = array_intersect( $widgets, $allowed_widget_ids ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1571 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1572 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1573 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1574 |
return $sidebars_widgets; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1575 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1576 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1577 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1578 |
* Display the RSS entries in a list. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1579 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1580 |
* @since 2.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1581 |
* |
16 | 1582 |
* @param string|array|object $rss RSS url. |
1583 |
* @param array $args Widget arguments. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1584 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1585 |
function wp_widget_rss_output( $rss, $args = array() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1586 |
if ( is_string( $rss ) ) { |
9 | 1587 |
$rss = fetch_feed( $rss ); |
1588 |
} elseif ( is_array( $rss ) && isset( $rss['url'] ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1589 |
$args = $rss; |
9 | 1590 |
$rss = fetch_feed( $rss['url'] ); |
1591 |
} elseif ( ! is_object( $rss ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1592 |
return; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1593 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1594 |
|
9 | 1595 |
if ( is_wp_error( $rss ) ) { |
1596 |
if ( is_admin() || current_user_can( 'manage_options' ) ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1597 |
echo '<p><strong>' . __( 'RSS Error:' ) . '</strong> ' . esc_html( $rss->get_error_message() ) . '</p>'; |
9 | 1598 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1599 |
return; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1600 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1601 |
|
9 | 1602 |
$default_args = array( |
1603 |
'show_author' => 0, |
|
1604 |
'show_date' => 0, |
|
1605 |
'show_summary' => 0, |
|
1606 |
'items' => 0, |
|
1607 |
); |
|
1608 |
$args = wp_parse_args( $args, $default_args ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1609 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1610 |
$items = (int) $args['items']; |
9 | 1611 |
if ( $items < 1 || 20 < $items ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1612 |
$items = 10; |
9 | 1613 |
} |
1614 |
$show_summary = (int) $args['show_summary']; |
|
1615 |
$show_author = (int) $args['show_author']; |
|
1616 |
$show_date = (int) $args['show_date']; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1617 |
|
9 | 1618 |
if ( ! $rss->get_item_quantity() ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1619 |
echo '<ul><li>' . __( 'An error has occurred, which probably means the feed is down. Try again later.' ) . '</li></ul>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1620 |
$rss->__destruct(); |
9 | 1621 |
unset( $rss ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1622 |
return; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1623 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1624 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1625 |
echo '<ul>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1626 |
foreach ( $rss->get_items( 0, $items ) as $item ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1627 |
$link = $item->get_link(); |
18 | 1628 |
while ( ! empty( $link ) && stristr( $link, 'http' ) !== $link ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1629 |
$link = substr( $link, 1 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1630 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1631 |
$link = esc_url( strip_tags( $link ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1632 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1633 |
$title = esc_html( trim( strip_tags( $item->get_title() ) ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1634 |
if ( empty( $title ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1635 |
$title = __( 'Untitled' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1636 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1637 |
|
16 | 1638 |
$desc = html_entity_decode( $item->get_description(), ENT_QUOTES, get_option( 'blog_charset' ) ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1639 |
$desc = esc_attr( wp_trim_words( $desc, 55, ' […]' ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1640 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1641 |
$summary = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1642 |
if ( $show_summary ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1643 |
$summary = $desc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1644 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1645 |
// Change existing [...] to […]. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1646 |
if ( str_ends_with( $summary, '[...]' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1647 |
$summary = substr( $summary, 0, -5 ) . '[…]'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1648 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1649 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1650 |
$summary = '<div class="rssSummary">' . esc_html( $summary ) . '</div>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1651 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1652 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1653 |
$date = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1654 |
if ( $show_date ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1655 |
$date = $item->get_date( 'U' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1656 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1657 |
if ( $date ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1658 |
$date = ' <span class="rss-date">' . date_i18n( get_option( 'date_format' ), $date ) . '</span>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1659 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1660 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1661 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1662 |
$author = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1663 |
if ( $show_author ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1664 |
$author = $item->get_author(); |
9 | 1665 |
if ( is_object( $author ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1666 |
$author = $author->get_name(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1667 |
$author = ' <cite>' . esc_html( strip_tags( $author ) ) . '</cite>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1668 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1669 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1670 |
|
16 | 1671 |
if ( '' === $link ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1672 |
echo "<li>$title{$date}{$summary}{$author}</li>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1673 |
} elseif ( $show_summary ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1674 |
echo "<li><a class='rsswidget' href='$link'>$title</a>{$date}{$summary}{$author}</li>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1675 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1676 |
echo "<li><a class='rsswidget' href='$link'>$title</a>{$date}{$author}</li>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1677 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1678 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1679 |
echo '</ul>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1680 |
$rss->__destruct(); |
9 | 1681 |
unset( $rss ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1682 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1683 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1684 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1685 |
* Display RSS widget options form. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1686 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1687 |
* The options for what fields are displayed for the RSS form are all booleans |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1688 |
* and are as follows: 'url', 'title', 'items', 'show_summary', 'show_author', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1689 |
* 'show_date'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1690 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1691 |
* @since 2.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1692 |
* |
16 | 1693 |
* @param array|string $args Values for input fields. |
1694 |
* @param array $inputs Override default display options. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1695 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1696 |
function wp_widget_rss_form( $args, $inputs = null ) { |
9 | 1697 |
$default_inputs = array( |
1698 |
'url' => true, |
|
1699 |
'title' => true, |
|
1700 |
'items' => true, |
|
1701 |
'show_summary' => true, |
|
1702 |
'show_author' => true, |
|
1703 |
'show_date' => true, |
|
1704 |
); |
|
1705 |
$inputs = wp_parse_args( $inputs, $default_inputs ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1706 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1707 |
$args['title'] = isset( $args['title'] ) ? $args['title'] : ''; |
9 | 1708 |
$args['url'] = isset( $args['url'] ) ? $args['url'] : ''; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1709 |
$args['items'] = isset( $args['items'] ) ? (int) $args['items'] : 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1710 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1711 |
if ( $args['items'] < 1 || 20 < $args['items'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1712 |
$args['items'] = 10; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1713 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1714 |
|
9 | 1715 |
$args['show_summary'] = isset( $args['show_summary'] ) ? (int) $args['show_summary'] : (int) $inputs['show_summary']; |
1716 |
$args['show_author'] = isset( $args['show_author'] ) ? (int) $args['show_author'] : (int) $inputs['show_author']; |
|
1717 |
$args['show_date'] = isset( $args['show_date'] ) ? (int) $args['show_date'] : (int) $inputs['show_date']; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1718 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1719 |
if ( ! empty( $args['error'] ) ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1720 |
echo '<p class="widget-error"><strong>' . __( 'RSS Error:' ) . '</strong> ' . esc_html( $args['error'] ) . '</p>'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1721 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1722 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1723 |
$esc_number = esc_attr( $args['number'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1724 |
if ( $inputs['url'] ) : |
9 | 1725 |
?> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1726 |
<p><label for="rss-url-<?php echo $esc_number; ?>"><?php _e( 'Enter the RSS feed URL here:' ); ?></label> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1727 |
<input class="widefat" id="rss-url-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][url]" type="text" value="<?php echo esc_url( $args['url'] ); ?>" /></p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1728 |
<?php endif; if ( $inputs['title'] ) : ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1729 |
<p><label for="rss-title-<?php echo $esc_number; ?>"><?php _e( 'Give the feed a title (optional):' ); ?></label> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1730 |
<input class="widefat" id="rss-title-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][title]" type="text" value="<?php echo esc_attr( $args['title'] ); ?>" /></p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1731 |
<?php endif; if ( $inputs['items'] ) : ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1732 |
<p><label for="rss-items-<?php echo $esc_number; ?>"><?php _e( 'How many items would you like to display?' ); ?></label> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1733 |
<select id="rss-items-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][items]"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1734 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1735 |
for ( $i = 1; $i <= 20; ++$i ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1736 |
echo "<option value='$i' " . selected( $args['items'], $i, false ) . ">$i</option>"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1737 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1738 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1739 |
</select></p> |
16 | 1740 |
<?php endif; if ( $inputs['show_summary'] || $inputs['show_author'] || $inputs['show_date'] ) : ?> |
1741 |
<p> |
|
1742 |
<?php if ( $inputs['show_summary'] ) : ?> |
|
1743 |
<input id="rss-show-summary-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_summary]" type="checkbox" value="1" <?php checked( $args['show_summary'] ); ?> /> |
|
1744 |
<label for="rss-show-summary-<?php echo $esc_number; ?>"><?php _e( 'Display item content?' ); ?></label><br /> |
|
1745 |
<?php endif; if ( $inputs['show_author'] ) : ?> |
|
1746 |
<input id="rss-show-author-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_author]" type="checkbox" value="1" <?php checked( $args['show_author'] ); ?> /> |
|
1747 |
<label for="rss-show-author-<?php echo $esc_number; ?>"><?php _e( 'Display item author if available?' ); ?></label><br /> |
|
1748 |
<?php endif; if ( $inputs['show_date'] ) : ?> |
|
1749 |
<input id="rss-show-date-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][show_date]" type="checkbox" value="1" <?php checked( $args['show_date'] ); ?>/> |
|
1750 |
<label for="rss-show-date-<?php echo $esc_number; ?>"><?php _e( 'Display item date?' ); ?></label><br /> |
|
1751 |
<?php endif; ?> |
|
1752 |
</p> |
|
9 | 1753 |
<?php |
16 | 1754 |
endif; // End of display options. |
9 | 1755 |
foreach ( array_keys( $default_inputs ) as $input ) : |
1756 |
if ( 'hidden' === $inputs[ $input ] ) : |
|
1757 |
$id = str_replace( '_', '-', $input ); |
|
1758 |
?> |
|
1759 |
<input type="hidden" id="rss-<?php echo esc_attr( $id ); ?>-<?php echo $esc_number; ?>" name="widget-rss[<?php echo $esc_number; ?>][<?php echo esc_attr( $input ); ?>]" value="<?php echo esc_attr( $args[ $input ] ); ?>" /> |
|
1760 |
<?php |
|
1761 |
endif; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1762 |
endforeach; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1763 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1764 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1765 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1766 |
* Process RSS feed widget data and optionally retrieve feed items. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1767 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1768 |
* The feed widget can not have more than 20 items or it will reset back to the |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1769 |
* default, which is 10. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1770 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1771 |
* The resulting array has the feed title, feed url, feed link (from channel), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1772 |
* feed items, error (if any), and whether to show summary, author, and date. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1773 |
* All respectively in the order of the array elements. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1774 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1775 |
* @since 2.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1776 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1777 |
* @param array $widget_rss RSS widget feed data. Expects unescaped data. |
16 | 1778 |
* @param bool $check_feed Optional. Whether to check feed for errors. Default true. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1779 |
* @return array |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1780 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1781 |
function wp_widget_rss_process( $widget_rss, $check_feed = true ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1782 |
$items = (int) $widget_rss['items']; |
9 | 1783 |
if ( $items < 1 || 20 < $items ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1784 |
$items = 10; |
9 | 1785 |
} |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1786 |
$url = sanitize_url( strip_tags( $widget_rss['url'] ) ); |
9 | 1787 |
$title = isset( $widget_rss['title'] ) ? trim( strip_tags( $widget_rss['title'] ) ) : ''; |
1788 |
$show_summary = isset( $widget_rss['show_summary'] ) ? (int) $widget_rss['show_summary'] : 0; |
|
1789 |
$show_author = isset( $widget_rss['show_author'] ) ? (int) $widget_rss['show_author'] : 0; |
|
1790 |
$show_date = isset( $widget_rss['show_date'] ) ? (int) $widget_rss['show_date'] : 0; |
|
19 | 1791 |
$error = false; |
1792 |
$link = ''; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1793 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1794 |
if ( $check_feed ) { |
19 | 1795 |
$rss = fetch_feed( $url ); |
1796 |
||
9 | 1797 |
if ( is_wp_error( $rss ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1798 |
$error = $rss->get_error_message(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1799 |
} else { |
9 | 1800 |
$link = esc_url( strip_tags( $rss->get_permalink() ) ); |
16 | 1801 |
while ( stristr( $link, 'http' ) !== $link ) { |
9 | 1802 |
$link = substr( $link, 1 ); |
1803 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1804 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1805 |
$rss->__destruct(); |
9 | 1806 |
unset( $rss ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1807 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1808 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1809 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1810 |
return compact( 'title', 'url', 'link', 'items', 'error', 'show_summary', 'show_author', 'show_date' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1811 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1812 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1813 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1814 |
* Registers all of the default WordPress widgets on startup. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1815 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1816 |
* Calls {@see 'widgets_init'} action after all of the WordPress widgets have been registered. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1817 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1818 |
* @since 2.2.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1819 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1820 |
function wp_widgets_init() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1821 |
if ( ! is_blog_installed() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1822 |
return; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1823 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1824 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1825 |
register_widget( 'WP_Widget_Pages' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1826 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1827 |
register_widget( 'WP_Widget_Calendar' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1828 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1829 |
register_widget( 'WP_Widget_Archives' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1830 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1831 |
if ( get_option( 'link_manager_enabled' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1832 |
register_widget( 'WP_Widget_Links' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1833 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1834 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1835 |
register_widget( 'WP_Widget_Media_Audio' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1836 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1837 |
register_widget( 'WP_Widget_Media_Image' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1838 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1839 |
register_widget( 'WP_Widget_Media_Gallery' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1840 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1841 |
register_widget( 'WP_Widget_Media_Video' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1842 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1843 |
register_widget( 'WP_Widget_Meta' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1844 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1845 |
register_widget( 'WP_Widget_Search' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1846 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1847 |
register_widget( 'WP_Widget_Text' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1848 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1849 |
register_widget( 'WP_Widget_Categories' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1850 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1851 |
register_widget( 'WP_Widget_Recent_Posts' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1852 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1853 |
register_widget( 'WP_Widget_Recent_Comments' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1854 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1855 |
register_widget( 'WP_Widget_RSS' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1856 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1857 |
register_widget( 'WP_Widget_Tag_Cloud' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1858 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1859 |
register_widget( 'WP_Nav_Menu_Widget' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1860 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1861 |
register_widget( 'WP_Widget_Custom_HTML' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1862 |
|
18 | 1863 |
register_widget( 'WP_Widget_Block' ); |
1864 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1865 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1866 |
* Fires after all default WordPress widgets have been registered. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1867 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1868 |
* @since 2.2.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1869 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1870 |
do_action( 'widgets_init' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1871 |
} |
18 | 1872 |
|
1873 |
/** |
|
1874 |
* Enables the widgets block editor. This is hooked into 'after_setup_theme' so |
|
1875 |
* that the block editor is enabled by default but can be disabled by themes. |
|
1876 |
* |
|
1877 |
* @since 5.8.0 |
|
1878 |
* |
|
1879 |
* @access private |
|
1880 |
*/ |
|
1881 |
function wp_setup_widgets_block_editor() { |
|
1882 |
add_theme_support( 'widgets-block-editor' ); |
|
1883 |
} |
|
1884 |
||
1885 |
/** |
|
1886 |
* Whether or not to use the block editor to manage widgets. Defaults to true |
|
1887 |
* unless a theme has removed support for widgets-block-editor or a plugin has |
|
1888 |
* filtered the return value of this function. |
|
1889 |
* |
|
1890 |
* @since 5.8.0 |
|
1891 |
* |
|
19 | 1892 |
* @return bool Whether to use the block editor to manage widgets. |
18 | 1893 |
*/ |
1894 |
function wp_use_widgets_block_editor() { |
|
1895 |
/** |
|
19 | 1896 |
* Filters whether to use the block editor to manage widgets. |
18 | 1897 |
* |
1898 |
* @since 5.8.0 |
|
1899 |
* |
|
19 | 1900 |
* @param bool $use_widgets_block_editor Whether to use the block editor to manage widgets. |
18 | 1901 |
*/ |
1902 |
return apply_filters( |
|
1903 |
'use_widgets_block_editor', |
|
1904 |
get_theme_support( 'widgets-block-editor' ) |
|
1905 |
); |
|
1906 |
} |
|
1907 |
||
1908 |
/** |
|
1909 |
* Converts a widget ID into its id_base and number components. |
|
1910 |
* |
|
1911 |
* @since 5.8.0 |
|
1912 |
* |
|
1913 |
* @param string $id Widget ID. |
|
1914 |
* @return array Array containing a widget's id_base and number components. |
|
1915 |
*/ |
|
1916 |
function wp_parse_widget_id( $id ) { |
|
1917 |
$parsed = array(); |
|
1918 |
||
1919 |
if ( preg_match( '/^(.+)-(\d+)$/', $id, $matches ) ) { |
|
1920 |
$parsed['id_base'] = $matches[1]; |
|
1921 |
$parsed['number'] = (int) $matches[2]; |
|
1922 |
} else { |
|
1923 |
// Likely an old single widget. |
|
1924 |
$parsed['id_base'] = $id; |
|
1925 |
} |
|
1926 |
||
1927 |
return $parsed; |
|
1928 |
} |
|
1929 |
||
1930 |
/** |
|
1931 |
* Finds the sidebar that a given widget belongs to. |
|
1932 |
* |
|
1933 |
* @since 5.8.0 |
|
1934 |
* |
|
19 | 1935 |
* @param string $widget_id The widget ID to look for. |
1936 |
* @return string|null The found sidebar's ID, or null if it was not found. |
|
18 | 1937 |
*/ |
1938 |
function wp_find_widgets_sidebar( $widget_id ) { |
|
1939 |
foreach ( wp_get_sidebars_widgets() as $sidebar_id => $widget_ids ) { |
|
1940 |
foreach ( $widget_ids as $maybe_widget_id ) { |
|
1941 |
if ( $maybe_widget_id === $widget_id ) { |
|
1942 |
return (string) $sidebar_id; |
|
1943 |
} |
|
1944 |
} |
|
1945 |
} |
|
1946 |
||
1947 |
return null; |
|
1948 |
} |
|
1949 |
||
1950 |
/** |
|
1951 |
* Assigns a widget to the given sidebar. |
|
1952 |
* |
|
1953 |
* @since 5.8.0 |
|
1954 |
* |
|
19 | 1955 |
* @param string $widget_id The widget ID to assign. |
1956 |
* @param string $sidebar_id The sidebar ID to assign to. If empty, the widget won't be added to any sidebar. |
|
18 | 1957 |
*/ |
1958 |
function wp_assign_widget_to_sidebar( $widget_id, $sidebar_id ) { |
|
1959 |
$sidebars = wp_get_sidebars_widgets(); |
|
1960 |
||
1961 |
foreach ( $sidebars as $maybe_sidebar_id => $widgets ) { |
|
1962 |
foreach ( $widgets as $i => $maybe_widget_id ) { |
|
1963 |
if ( $widget_id === $maybe_widget_id && $sidebar_id !== $maybe_sidebar_id ) { |
|
1964 |
unset( $sidebars[ $maybe_sidebar_id ][ $i ] ); |
|
19 | 1965 |
// We could technically break 2 here, but continue looping in case the ID is duplicated. |
18 | 1966 |
continue 2; |
1967 |
} |
|
1968 |
} |
|
1969 |
} |
|
1970 |
||
1971 |
if ( $sidebar_id ) { |
|
1972 |
$sidebars[ $sidebar_id ][] = $widget_id; |
|
1973 |
} |
|
1974 |
||
1975 |
wp_set_sidebars_widgets( $sidebars ); |
|
1976 |
} |
|
1977 |
||
1978 |
/** |
|
1979 |
* Calls the render callback of a widget and returns the output. |
|
1980 |
* |
|
1981 |
* @since 5.8.0 |
|
1982 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1983 |
* @global array $wp_registered_widgets The registered widgets. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1984 |
* @global array $wp_registered_sidebars The registered sidebars. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1985 |
* |
18 | 1986 |
* @param string $widget_id Widget ID. |
1987 |
* @param string $sidebar_id Sidebar ID. |
|
1988 |
* @return string |
|
1989 |
*/ |
|
1990 |
function wp_render_widget( $widget_id, $sidebar_id ) { |
|
1991 |
global $wp_registered_widgets, $wp_registered_sidebars; |
|
1992 |
||
1993 |
if ( ! isset( $wp_registered_widgets[ $widget_id ] ) ) { |
|
1994 |
return ''; |
|
1995 |
} |
|
1996 |
||
1997 |
if ( isset( $wp_registered_sidebars[ $sidebar_id ] ) ) { |
|
1998 |
$sidebar = $wp_registered_sidebars[ $sidebar_id ]; |
|
1999 |
} elseif ( 'wp_inactive_widgets' === $sidebar_id ) { |
|
2000 |
$sidebar = array(); |
|
2001 |
} else { |
|
2002 |
return ''; |
|
2003 |
} |
|
2004 |
||
2005 |
$params = array_merge( |
|
2006 |
array( |
|
2007 |
array_merge( |
|
2008 |
$sidebar, |
|
2009 |
array( |
|
2010 |
'widget_id' => $widget_id, |
|
2011 |
'widget_name' => $wp_registered_widgets[ $widget_id ]['name'], |
|
2012 |
) |
|
2013 |
), |
|
2014 |
), |
|
2015 |
(array) $wp_registered_widgets[ $widget_id ]['params'] |
|
2016 |
); |
|
2017 |
||
2018 |
// Substitute HTML `id` and `class` attributes into `before_widget`. |
|
2019 |
$classname_ = ''; |
|
2020 |
foreach ( (array) $wp_registered_widgets[ $widget_id ]['classname'] as $cn ) { |
|
2021 |
if ( is_string( $cn ) ) { |
|
2022 |
$classname_ .= '_' . $cn; |
|
2023 |
} elseif ( is_object( $cn ) ) { |
|
2024 |
$classname_ .= '_' . get_class( $cn ); |
|
2025 |
} |
|
2026 |
} |
|
2027 |
$classname_ = ltrim( $classname_, '_' ); |
|
2028 |
$params[0]['before_widget'] = sprintf( $params[0]['before_widget'], $widget_id, $classname_ ); |
|
2029 |
||
2030 |
/** This filter is documented in wp-includes/widgets.php */ |
|
2031 |
$params = apply_filters( 'dynamic_sidebar_params', $params ); |
|
2032 |
||
2033 |
$callback = $wp_registered_widgets[ $widget_id ]['callback']; |
|
2034 |
||
2035 |
ob_start(); |
|
2036 |
||
2037 |
/** This filter is documented in wp-includes/widgets.php */ |
|
2038 |
do_action( 'dynamic_sidebar', $wp_registered_widgets[ $widget_id ] ); |
|
2039 |
||
2040 |
if ( is_callable( $callback ) ) { |
|
2041 |
call_user_func_array( $callback, $params ); |
|
2042 |
} |
|
2043 |
||
2044 |
return ob_get_clean(); |
|
2045 |
} |
|
2046 |
||
2047 |
/** |
|
2048 |
* Calls the control callback of a widget and returns the output. |
|
2049 |
* |
|
2050 |
* @since 5.8.0 |
|
2051 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2052 |
* @global array $wp_registered_widget_controls The registered widget controls. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2053 |
* |
18 | 2054 |
* @param string $id Widget ID. |
2055 |
* @return string|null |
|
2056 |
*/ |
|
2057 |
function wp_render_widget_control( $id ) { |
|
2058 |
global $wp_registered_widget_controls; |
|
2059 |
||
2060 |
if ( ! isset( $wp_registered_widget_controls[ $id ]['callback'] ) ) { |
|
2061 |
return null; |
|
2062 |
} |
|
2063 |
||
2064 |
$callback = $wp_registered_widget_controls[ $id ]['callback']; |
|
2065 |
$params = $wp_registered_widget_controls[ $id ]['params']; |
|
2066 |
||
2067 |
ob_start(); |
|
2068 |
||
2069 |
if ( is_callable( $callback ) ) { |
|
2070 |
call_user_func_array( $callback, $params ); |
|
2071 |
} |
|
2072 |
||
2073 |
return ob_get_clean(); |
|
2074 |
} |
|
2075 |
||
2076 |
/** |
|
2077 |
* Displays a _doing_it_wrong() message for conflicting widget editor scripts. |
|
2078 |
* |
|
2079 |
* The 'wp-editor' script module is exposed as window.wp.editor. This overrides |
|
2080 |
* the legacy TinyMCE editor module which is required by the widgets editor. |
|
2081 |
* Because of that conflict, these two shouldn't be enqueued together. |
|
2082 |
* See https://core.trac.wordpress.org/ticket/53569. |
|
2083 |
* |
|
2084 |
* There is also another conflict related to styles where the block widgets |
|
2085 |
* editor is hidden if a block enqueues 'wp-edit-post' stylesheet. |
|
2086 |
* See https://core.trac.wordpress.org/ticket/53569. |
|
2087 |
* |
|
2088 |
* @since 5.8.0 |
|
2089 |
* @access private |
|
2090 |
* |
|
2091 |
* @global WP_Scripts $wp_scripts |
|
2092 |
* @global WP_Styles $wp_styles |
|
2093 |
*/ |
|
2094 |
function wp_check_widget_editor_deps() { |
|
2095 |
global $wp_scripts, $wp_styles; |
|
2096 |
||
2097 |
if ( |
|
2098 |
$wp_scripts->query( 'wp-edit-widgets', 'enqueued' ) || |
|
2099 |
$wp_scripts->query( 'wp-customize-widgets', 'enqueued' ) |
|
2100 |
) { |
|
2101 |
if ( $wp_scripts->query( 'wp-editor', 'enqueued' ) ) { |
|
2102 |
_doing_it_wrong( |
|
2103 |
'wp_enqueue_script()', |
|
19 | 2104 |
sprintf( |
2105 |
/* translators: 1: 'wp-editor', 2: 'wp-edit-widgets', 3: 'wp-customize-widgets'. */ |
|
2106 |
__( '"%1$s" script should not be enqueued together with the new widgets editor (%2$s or %3$s).' ), |
|
2107 |
'wp-editor', |
|
2108 |
'wp-edit-widgets', |
|
2109 |
'wp-customize-widgets' |
|
2110 |
), |
|
18 | 2111 |
'5.8.0' |
2112 |
); |
|
2113 |
} |
|
2114 |
if ( $wp_styles->query( 'wp-edit-post', 'enqueued' ) ) { |
|
2115 |
_doing_it_wrong( |
|
2116 |
'wp_enqueue_style()', |
|
19 | 2117 |
sprintf( |
2118 |
/* translators: 1: 'wp-edit-post', 2: 'wp-edit-widgets', 3: 'wp-customize-widgets'. */ |
|
2119 |
__( '"%1$s" style should not be enqueued together with the new widgets editor (%2$s or %3$s).' ), |
|
2120 |
'wp-edit-post', |
|
2121 |
'wp-edit-widgets', |
|
2122 |
'wp-customize-widgets' |
|
2123 |
), |
|
18 | 2124 |
'5.8.0' |
2125 |
); |
|
2126 |
} |
|
2127 |
} |
|
2128 |
} |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2129 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2130 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2131 |
* Registers the previous theme's sidebars for the block themes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2132 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2133 |
* @since 6.2.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2134 |
* @access private |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2135 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2136 |
* @global array $wp_registered_sidebars The registered sidebars. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2137 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2138 |
function _wp_block_theme_register_classic_sidebars() { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2139 |
global $wp_registered_sidebars; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2140 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2141 |
if ( ! wp_is_block_theme() ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2142 |
return; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2143 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2144 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2145 |
$classic_sidebars = get_theme_mod( 'wp_classic_sidebars' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2146 |
if ( empty( $classic_sidebars ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2147 |
return; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2148 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2149 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2150 |
// Don't use `register_sidebar` since it will enable the `widgets` support for a theme. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2151 |
foreach ( $classic_sidebars as $sidebar ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2152 |
$wp_registered_sidebars[ $sidebar['id'] ] = $sidebar; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2153 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2154 |
} |