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 |
* Nav Menu API: Template functions |
0 | 4 |
* |
5 |
* @package WordPress |
|
6 |
* @subpackage Nav_Menus |
|
7 |
* @since 3.0.0 |
|
8 |
*/ |
|
9 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
/** Walker_Nav_Menu class */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
11 |
require_once ABSPATH . WPINC . '/class-walker-nav-menu.php'; |
0 | 12 |
|
13 |
/** |
|
14 |
* Displays a navigation menu. |
|
15 |
* |
|
16 |
* @since 3.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
* @since 4.7.0 Added the `item_spacing` argument. |
16 | 18 |
* @since 5.5.0 Added the `container_aria_label` argument. |
0 | 19 |
* |
5 | 20 |
* @param array $args { |
21 |
* Optional. Array of nav menu arguments. |
|
22 |
* |
|
16 | 23 |
* @type int|string|WP_Term $menu Desired menu. Accepts a menu ID, slug, name, or object. |
24 |
* Default empty. |
|
25 |
* @type string $menu_class CSS class to use for the ul element which forms the menu. |
|
26 |
* Default 'menu'. |
|
27 |
* @type string $menu_id The ID that is applied to the ul element which forms the menu. |
|
28 |
* Default is the menu slug, incremented. |
|
29 |
* @type string $container Whether to wrap the ul, and what to wrap it with. |
|
30 |
* Default 'div'. |
|
31 |
* @type string $container_class Class that is applied to the container. |
|
32 |
* Default 'menu-{menu slug}-container'. |
|
33 |
* @type string $container_id The ID that is applied to the container. Default empty. |
|
34 |
* @type string $container_aria_label The aria-label attribute that is applied to the container |
|
35 |
* when it's a nav element. Default empty. |
|
18 | 36 |
* @type callable|false $fallback_cb If the menu doesn't exist, a callback function will fire. |
16 | 37 |
* Default is 'wp_page_menu'. Set to false for no fallback. |
38 |
* @type string $before Text before the link markup. Default empty. |
|
39 |
* @type string $after Text after the link markup. Default empty. |
|
40 |
* @type string $link_before Text before the link text. Default empty. |
|
41 |
* @type string $link_after Text after the link text. Default empty. |
|
42 |
* @type bool $echo Whether to echo the menu or return it. Default true. |
|
43 |
* @type int $depth How many levels of the hierarchy are to be included. |
|
44 |
* 0 means all. Default 0. |
|
45 |
* Default 0. |
|
46 |
* @type object $walker Instance of a custom walker class. Default empty. |
|
47 |
* @type string $theme_location Theme location to be used. Must be registered with |
|
48 |
* register_nav_menu() in order to be selectable by the user. |
|
49 |
* @type string $items_wrap How the list items should be wrapped. Uses printf() format with |
|
50 |
* numbered placeholders. Default is a ul with an id and class. |
|
51 |
* @type string $item_spacing Whether to preserve whitespace within the menu's HTML. |
|
52 |
* Accepts 'preserve' or 'discard'. Default 'preserve'. |
|
5 | 53 |
* } |
16 | 54 |
* @return void|string|false Void if 'echo' argument is true, menu output if 'echo' is false. |
55 |
* False if there are no items or no menu was found. |
|
0 | 56 |
*/ |
57 |
function wp_nav_menu( $args = array() ) { |
|
58 |
static $menu_id_slugs = array(); |
|
59 |
||
9 | 60 |
$defaults = array( |
16 | 61 |
'menu' => '', |
62 |
'container' => 'div', |
|
63 |
'container_class' => '', |
|
64 |
'container_id' => '', |
|
65 |
'container_aria_label' => '', |
|
66 |
'menu_class' => 'menu', |
|
67 |
'menu_id' => '', |
|
68 |
'echo' => true, |
|
69 |
'fallback_cb' => 'wp_page_menu', |
|
70 |
'before' => '', |
|
71 |
'after' => '', |
|
72 |
'link_before' => '', |
|
73 |
'link_after' => '', |
|
74 |
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', |
|
75 |
'item_spacing' => 'preserve', |
|
76 |
'depth' => 0, |
|
77 |
'walker' => '', |
|
78 |
'theme_location' => '', |
|
9 | 79 |
); |
0 | 80 |
|
81 |
$args = wp_parse_args( $args, $defaults ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
82 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
83 |
if ( ! in_array( $args['item_spacing'], array( 'preserve', 'discard' ), true ) ) { |
16 | 84 |
// Invalid value, fall back to default. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
85 |
$args['item_spacing'] = $defaults['item_spacing']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
87 |
|
0 | 88 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
* Filters the arguments used to display a navigation menu. |
0 | 90 |
* |
91 |
* @since 3.0.0 |
|
92 |
* |
|
5 | 93 |
* @see wp_nav_menu() |
94 |
* |
|
95 |
* @param array $args Array of wp_nav_menu() arguments. |
|
0 | 96 |
*/ |
97 |
$args = apply_filters( 'wp_nav_menu_args', $args ); |
|
98 |
$args = (object) $args; |
|
99 |
||
5 | 100 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
* Filters whether to short-circuit the wp_nav_menu() output. |
5 | 102 |
* |
16 | 103 |
* Returning a non-null value from the filter will short-circuit wp_nav_menu(), |
104 |
* echoing that value if $args->echo is true, returning that value otherwise. |
|
5 | 105 |
* |
106 |
* @since 3.9.0 |
|
107 |
* |
|
108 |
* @see wp_nav_menu() |
|
109 |
* |
|
110 |
* @param string|null $output Nav menu output to short-circuit with. Default null. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
* @param stdClass $args An object containing wp_nav_menu() arguments. |
5 | 112 |
*/ |
113 |
$nav_menu = apply_filters( 'pre_wp_nav_menu', null, $args ); |
|
114 |
||
115 |
if ( null !== $nav_menu ) { |
|
116 |
if ( $args->echo ) { |
|
117 |
echo $nav_menu; |
|
118 |
return; |
|
119 |
} |
|
120 |
||
121 |
return $nav_menu; |
|
122 |
} |
|
123 |
||
16 | 124 |
// Get the nav menu based on the requested menu. |
0 | 125 |
$menu = wp_get_nav_menu_object( $args->menu ); |
126 |
||
16 | 127 |
// Get the nav menu based on the theme_location. |
128 |
$locations = get_nav_menu_locations(); |
|
129 |
if ( ! $menu && $args->theme_location && $locations && isset( $locations[ $args->theme_location ] ) ) { |
|
0 | 130 |
$menu = wp_get_nav_menu_object( $locations[ $args->theme_location ] ); |
9 | 131 |
} |
0 | 132 |
|
16 | 133 |
// Get the first menu that has items if we still can't find a menu. |
9 | 134 |
if ( ! $menu && ! $args->theme_location ) { |
0 | 135 |
$menus = wp_get_nav_menus(); |
136 |
foreach ( $menus as $menu_maybe ) { |
|
16 | 137 |
$menu_items = wp_get_nav_menu_items( $menu_maybe->term_id, array( 'update_post_term_cache' => false ) ); |
138 |
if ( $menu_items ) { |
|
0 | 139 |
$menu = $menu_maybe; |
140 |
break; |
|
141 |
} |
|
142 |
} |
|
143 |
} |
|
144 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
if ( empty( $args->menu ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
146 |
$args->menu = $menu; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
147 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
148 |
|
0 | 149 |
// If the menu exists, get its items. |
9 | 150 |
if ( $menu && ! is_wp_error( $menu ) && ! isset( $menu_items ) ) { |
0 | 151 |
$menu_items = wp_get_nav_menu_items( $menu->term_id, array( 'update_post_term_cache' => false ) ); |
9 | 152 |
} |
0 | 153 |
|
154 |
/* |
|
155 |
* If no menu was found: |
|
156 |
* - Fall back (if one was specified), or bail. |
|
157 |
* |
|
158 |
* If no menu items were found: |
|
159 |
* - Fall back, but only if no theme location was specified. |
|
160 |
* - Otherwise, bail. |
|
161 |
*/ |
|
9 | 162 |
if ( ( ! $menu || is_wp_error( $menu ) || ( isset( $menu_items ) && empty( $menu_items ) && ! $args->theme_location ) ) |
163 |
&& isset( $args->fallback_cb ) && $args->fallback_cb && is_callable( $args->fallback_cb ) ) { |
|
0 | 164 |
return call_user_func( $args->fallback_cb, (array) $args ); |
9 | 165 |
} |
0 | 166 |
|
9 | 167 |
if ( ! $menu || is_wp_error( $menu ) ) { |
0 | 168 |
return false; |
9 | 169 |
} |
0 | 170 |
|
16 | 171 |
$nav_menu = ''; |
172 |
$items = ''; |
|
0 | 173 |
|
174 |
$show_container = false; |
|
175 |
if ( $args->container ) { |
|
176 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
177 |
* Filters the list of HTML tags that are valid for use as menu containers. |
0 | 178 |
* |
179 |
* @since 3.0.0 |
|
180 |
* |
|
16 | 181 |
* @param string[] $tags The acceptable HTML tags for use as menu containers. |
182 |
* Default is array containing 'div' and 'nav'. |
|
0 | 183 |
*/ |
184 |
$allowed_tags = apply_filters( 'wp_nav_menu_container_allowedtags', array( 'div', 'nav' ) ); |
|
16 | 185 |
|
186 |
if ( is_string( $args->container ) && in_array( $args->container, $allowed_tags, true ) ) { |
|
0 | 187 |
$show_container = true; |
9 | 188 |
$class = $args->container_class ? ' class="' . esc_attr( $args->container_class ) . '"' : ' class="menu-' . $menu->slug . '-container"'; |
189 |
$id = $args->container_id ? ' id="' . esc_attr( $args->container_id ) . '"' : ''; |
|
16 | 190 |
$aria_label = ( 'nav' === $args->container && $args->container_aria_label ) ? ' aria-label="' . esc_attr( $args->container_aria_label ) . '"' : ''; |
191 |
$nav_menu .= '<' . $args->container . $id . $class . $aria_label . '>'; |
|
0 | 192 |
} |
193 |
} |
|
194 |
||
16 | 195 |
// Set up the $menu_item variables. |
0 | 196 |
_wp_menu_item_classes_by_context( $menu_items ); |
197 |
||
16 | 198 |
$sorted_menu_items = array(); |
199 |
$menu_items_with_children = array(); |
|
0 | 200 |
foreach ( (array) $menu_items as $menu_item ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
201 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
202 |
* Fix invalid `menu_item_parent`. See: https://core.trac.wordpress.org/ticket/56926. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
203 |
* Compare as strings. Plugins may change the ID to a string. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
204 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
205 |
if ( (string) $menu_item->ID === (string) $menu_item->menu_item_parent ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
206 |
$menu_item->menu_item_parent = 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
207 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
208 |
|
0 | 209 |
$sorted_menu_items[ $menu_item->menu_order ] = $menu_item; |
9 | 210 |
if ( $menu_item->menu_item_parent ) { |
0 | 211 |
$menu_items_with_children[ $menu_item->menu_item_parent ] = true; |
9 | 212 |
} |
0 | 213 |
} |
214 |
||
16 | 215 |
// Add the menu-item-has-children class where applicable. |
0 | 216 |
if ( $menu_items_with_children ) { |
217 |
foreach ( $sorted_menu_items as &$menu_item ) { |
|
9 | 218 |
if ( isset( $menu_items_with_children[ $menu_item->ID ] ) ) { |
0 | 219 |
$menu_item->classes[] = 'menu-item-has-children'; |
9 | 220 |
} |
0 | 221 |
} |
222 |
} |
|
223 |
||
224 |
unset( $menu_items, $menu_item ); |
|
225 |
||
226 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
227 |
* Filters the sorted list of menu item objects before generating the menu's HTML. |
0 | 228 |
* |
229 |
* @since 3.1.0 |
|
230 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
231 |
* @param array $sorted_menu_items The menu items, sorted by each menu item's menu order. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
232 |
* @param stdClass $args An object containing wp_nav_menu() arguments. |
0 | 233 |
*/ |
234 |
$sorted_menu_items = apply_filters( 'wp_nav_menu_objects', $sorted_menu_items, $args ); |
|
235 |
||
236 |
$items .= walk_nav_menu_tree( $sorted_menu_items, $args->depth, $args ); |
|
9 | 237 |
unset( $sorted_menu_items ); |
0 | 238 |
|
16 | 239 |
// Attributes. |
0 | 240 |
if ( ! empty( $args->menu_id ) ) { |
241 |
$wrap_id = $args->menu_id; |
|
242 |
} else { |
|
243 |
$wrap_id = 'menu-' . $menu->slug; |
|
16 | 244 |
|
245 |
while ( in_array( $wrap_id, $menu_id_slugs, true ) ) { |
|
9 | 246 |
if ( preg_match( '#-(\d+)$#', $wrap_id, $matches ) ) { |
247 |
$wrap_id = preg_replace( '#-(\d+)$#', '-' . ++$matches[1], $wrap_id ); |
|
248 |
} else { |
|
0 | 249 |
$wrap_id = $wrap_id . '-1'; |
9 | 250 |
} |
0 | 251 |
} |
252 |
} |
|
253 |
$menu_id_slugs[] = $wrap_id; |
|
254 |
||
255 |
$wrap_class = $args->menu_class ? $args->menu_class : ''; |
|
256 |
||
257 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
258 |
* Filters the HTML list content for navigation menus. |
0 | 259 |
* |
260 |
* @since 3.0.0 |
|
261 |
* |
|
5 | 262 |
* @see wp_nav_menu() |
263 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
264 |
* @param string $items The HTML list content for the menu items. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
265 |
* @param stdClass $args An object containing wp_nav_menu() arguments. |
0 | 266 |
*/ |
267 |
$items = apply_filters( 'wp_nav_menu_items', $items, $args ); |
|
268 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
269 |
* Filters the HTML list content for a specific navigation menu. |
0 | 270 |
* |
271 |
* @since 3.0.0 |
|
272 |
* |
|
5 | 273 |
* @see wp_nav_menu() |
274 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
275 |
* @param string $items The HTML list content for the menu items. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
276 |
* @param stdClass $args An object containing wp_nav_menu() arguments. |
0 | 277 |
*/ |
278 |
$items = apply_filters( "wp_nav_menu_{$menu->slug}_items", $items, $args ); |
|
279 |
||
280 |
// Don't print any markup if there are no items at this point. |
|
9 | 281 |
if ( empty( $items ) ) { |
0 | 282 |
return false; |
9 | 283 |
} |
0 | 284 |
|
285 |
$nav_menu .= sprintf( $args->items_wrap, esc_attr( $wrap_id ), esc_attr( $wrap_class ), $items ); |
|
286 |
unset( $items ); |
|
287 |
||
9 | 288 |
if ( $show_container ) { |
0 | 289 |
$nav_menu .= '</' . $args->container . '>'; |
9 | 290 |
} |
0 | 291 |
|
292 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
293 |
* Filters the HTML content for navigation menus. |
0 | 294 |
* |
295 |
* @since 3.0.0 |
|
296 |
* |
|
5 | 297 |
* @see wp_nav_menu() |
298 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
299 |
* @param string $nav_menu The HTML content for the navigation menu. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
300 |
* @param stdClass $args An object containing wp_nav_menu() arguments. |
0 | 301 |
*/ |
302 |
$nav_menu = apply_filters( 'wp_nav_menu', $nav_menu, $args ); |
|
303 |
||
9 | 304 |
if ( $args->echo ) { |
0 | 305 |
echo $nav_menu; |
9 | 306 |
} else { |
0 | 307 |
return $nav_menu; |
9 | 308 |
} |
0 | 309 |
} |
310 |
||
311 |
/** |
|
16 | 312 |
* Adds the class property classes for the current context, if applicable. |
0 | 313 |
* |
314 |
* @access private |
|
5 | 315 |
* @since 3.0.0 |
0 | 316 |
* |
16 | 317 |
* @global WP_Query $wp_query WordPress Query object. |
318 |
* @global WP_Rewrite $wp_rewrite WordPress rewrite component. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
* |
0 | 320 |
* @param array $menu_items The current menu item objects to which to add the class property information. |
321 |
*/ |
|
322 |
function _wp_menu_item_classes_by_context( &$menu_items ) { |
|
323 |
global $wp_query, $wp_rewrite; |
|
324 |
||
9 | 325 |
$queried_object = $wp_query->get_queried_object(); |
0 | 326 |
$queried_object_id = (int) $wp_query->queried_object_id; |
327 |
||
9 | 328 |
$active_object = ''; |
329 |
$active_ancestor_item_ids = array(); |
|
330 |
$active_parent_item_ids = array(); |
|
331 |
$active_parent_object_ids = array(); |
|
0 | 332 |
$possible_taxonomy_ancestors = array(); |
9 | 333 |
$possible_object_parents = array(); |
334 |
$home_page_id = (int) get_option( 'page_for_posts' ); |
|
0 | 335 |
|
336 |
if ( $wp_query->is_singular && ! empty( $queried_object->post_type ) && ! is_post_type_hierarchical( $queried_object->post_type ) ) { |
|
337 |
foreach ( (array) get_object_taxonomies( $queried_object->post_type ) as $taxonomy ) { |
|
338 |
if ( is_taxonomy_hierarchical( $taxonomy ) ) { |
|
339 |
$term_hierarchy = _get_term_hierarchy( $taxonomy ); |
|
9 | 340 |
$terms = wp_get_object_terms( $queried_object_id, $taxonomy, array( 'fields' => 'ids' ) ); |
0 | 341 |
if ( is_array( $terms ) ) { |
342 |
$possible_object_parents = array_merge( $possible_object_parents, $terms ); |
|
9 | 343 |
$term_to_ancestor = array(); |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
344 |
foreach ( (array) $term_hierarchy as $ancestor => $descendents ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
345 |
foreach ( (array) $descendents as $desc ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
346 |
$term_to_ancestor[ $desc ] = $ancestor; |
9 | 347 |
} |
0 | 348 |
} |
349 |
||
350 |
foreach ( $terms as $desc ) { |
|
351 |
do { |
|
352 |
$possible_taxonomy_ancestors[ $taxonomy ][] = $desc; |
|
353 |
if ( isset( $term_to_ancestor[ $desc ] ) ) { |
|
354 |
$_desc = $term_to_ancestor[ $desc ]; |
|
355 |
unset( $term_to_ancestor[ $desc ] ); |
|
356 |
$desc = $_desc; |
|
357 |
} else { |
|
358 |
$desc = 0; |
|
359 |
} |
|
360 |
} while ( ! empty( $desc ) ); |
|
361 |
} |
|
362 |
} |
|
363 |
} |
|
364 |
} |
|
365 |
} elseif ( ! empty( $queried_object->taxonomy ) && is_taxonomy_hierarchical( $queried_object->taxonomy ) ) { |
|
9 | 366 |
$term_hierarchy = _get_term_hierarchy( $queried_object->taxonomy ); |
0 | 367 |
$term_to_ancestor = array(); |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
368 |
foreach ( (array) $term_hierarchy as $ancestor => $descendents ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
369 |
foreach ( (array) $descendents as $desc ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
370 |
$term_to_ancestor[ $desc ] = $ancestor; |
9 | 371 |
} |
0 | 372 |
} |
373 |
$desc = $queried_object->term_id; |
|
374 |
do { |
|
375 |
$possible_taxonomy_ancestors[ $queried_object->taxonomy ][] = $desc; |
|
376 |
if ( isset( $term_to_ancestor[ $desc ] ) ) { |
|
377 |
$_desc = $term_to_ancestor[ $desc ]; |
|
378 |
unset( $term_to_ancestor[ $desc ] ); |
|
379 |
$desc = $_desc; |
|
380 |
} else { |
|
381 |
$desc = 0; |
|
382 |
} |
|
383 |
} while ( ! empty( $desc ) ); |
|
384 |
} |
|
385 |
||
386 |
$possible_object_parents = array_filter( $possible_object_parents ); |
|
387 |
||
9 | 388 |
$front_page_url = home_url(); |
389 |
$front_page_id = (int) get_option( 'page_on_front' ); |
|
390 |
$privacy_policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' ); |
|
0 | 391 |
|
392 |
foreach ( (array) $menu_items as $key => $menu_item ) { |
|
393 |
||
9 | 394 |
$menu_items[ $key ]->current = false; |
0 | 395 |
|
9 | 396 |
$classes = (array) $menu_item->classes; |
0 | 397 |
$classes[] = 'menu-item'; |
398 |
$classes[] = 'menu-item-type-' . $menu_item->type; |
|
399 |
$classes[] = 'menu-item-object-' . $menu_item->object; |
|
400 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
401 |
// This menu item is set as the 'Front Page'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
402 |
if ( 'post_type' === $menu_item->type && $front_page_id === (int) $menu_item->object_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
403 |
$classes[] = 'menu-item-home'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
404 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
405 |
|
9 | 406 |
// This menu item is set as the 'Privacy Policy Page'. |
407 |
if ( 'post_type' === $menu_item->type && $privacy_policy_page_id === (int) $menu_item->object_id ) { |
|
408 |
$classes[] = 'menu-item-privacy-policy'; |
|
409 |
} |
|
410 |
||
16 | 411 |
// If the menu item corresponds to a taxonomy term for the currently queried non-hierarchical post object. |
412 |
if ( $wp_query->is_singular && 'taxonomy' === $menu_item->type |
|
413 |
&& in_array( (int) $menu_item->object_id, $possible_object_parents, true ) |
|
414 |
) { |
|
0 | 415 |
$active_parent_object_ids[] = (int) $menu_item->object_id; |
9 | 416 |
$active_parent_item_ids[] = (int) $menu_item->db_id; |
417 |
$active_object = $queried_object->post_type; |
|
0 | 418 |
|
16 | 419 |
// If the menu item corresponds to the currently queried post or taxonomy object. |
0 | 420 |
} elseif ( |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
421 |
(int) $menu_item->object_id === $queried_object_id |
16 | 422 |
&& ( |
423 |
( ! empty( $home_page_id ) && 'post_type' === $menu_item->type |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
424 |
&& $wp_query->is_home && $home_page_id === (int) $menu_item->object_id ) |
16 | 425 |
|| ( 'post_type' === $menu_item->type && $wp_query->is_singular ) |
426 |
|| ( 'taxonomy' === $menu_item->type |
|
427 |
&& ( $wp_query->is_category || $wp_query->is_tag || $wp_query->is_tax ) |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
428 |
&& $queried_object->taxonomy === $menu_item->object ) |
0 | 429 |
) |
430 |
) { |
|
9 | 431 |
$classes[] = 'current-menu-item'; |
432 |
$menu_items[ $key ]->current = true; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
433 |
$ancestor_id = (int) $menu_item->db_id; |
0 | 434 |
|
9 | 435 |
while ( |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
436 |
( $ancestor_id = (int) get_post_meta( $ancestor_id, '_menu_item_menu_item_parent', true ) ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
437 |
&& ! in_array( $ancestor_id, $active_ancestor_item_ids, true ) |
0 | 438 |
) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
439 |
$active_ancestor_item_ids[] = $ancestor_id; |
0 | 440 |
} |
441 |
||
16 | 442 |
if ( 'post_type' === $menu_item->type && 'page' === $menu_item->object ) { |
443 |
// Back compat classes for pages to match wp_page_menu(). |
|
0 | 444 |
$classes[] = 'page_item'; |
445 |
$classes[] = 'page-item-' . $menu_item->object_id; |
|
446 |
$classes[] = 'current_page_item'; |
|
447 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
448 |
|
9 | 449 |
$active_parent_item_ids[] = (int) $menu_item->menu_item_parent; |
0 | 450 |
$active_parent_object_ids[] = (int) $menu_item->post_parent; |
9 | 451 |
$active_object = $menu_item->object; |
0 | 452 |
|
16 | 453 |
// If the menu item corresponds to the currently queried post type archive. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
454 |
} elseif ( |
16 | 455 |
'post_type_archive' === $menu_item->type |
456 |
&& is_post_type_archive( array( $menu_item->object ) ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
457 |
) { |
9 | 458 |
$classes[] = 'current-menu-item'; |
459 |
$menu_items[ $key ]->current = true; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
460 |
$ancestor_id = (int) $menu_item->db_id; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
461 |
|
9 | 462 |
while ( |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
463 |
( $ancestor_id = (int) get_post_meta( $ancestor_id, '_menu_item_menu_item_parent', true ) ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
464 |
&& ! in_array( $ancestor_id, $active_ancestor_item_ids, true ) |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
465 |
) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
466 |
$active_ancestor_item_ids[] = $ancestor_id; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
467 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
468 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
469 |
$active_parent_item_ids[] = (int) $menu_item->menu_item_parent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
470 |
|
16 | 471 |
// If the menu item corresponds to the currently requested URL. |
472 |
} elseif ( 'custom' === $menu_item->object && isset( $_SERVER['HTTP_HOST'] ) ) { |
|
0 | 473 |
$_root_relative_current = untrailingslashit( $_SERVER['REQUEST_URI'] ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
474 |
|
16 | 475 |
// If it's the customize page then it will strip the query var off the URL before entering the comparison block. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
476 |
if ( is_customize_preview() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
477 |
$_root_relative_current = strtok( untrailingslashit( $_SERVER['REQUEST_URI'] ), '?' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
478 |
} |
9 | 479 |
|
480 |
$current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_root_relative_current ); |
|
481 |
$raw_item_url = strpos( $menu_item->url, '#' ) ? substr( $menu_item->url, 0, strpos( $menu_item->url, '#' ) ) : $menu_item->url; |
|
482 |
$item_url = set_url_scheme( untrailingslashit( $raw_item_url ) ); |
|
0 | 483 |
$_indexless_current = untrailingslashit( preg_replace( '/' . preg_quote( $wp_rewrite->index, '/' ) . '$/', '', $current_url ) ); |
484 |
||
9 | 485 |
$matches = array( |
486 |
$current_url, |
|
487 |
urldecode( $current_url ), |
|
488 |
$_indexless_current, |
|
489 |
urldecode( $_indexless_current ), |
|
490 |
$_root_relative_current, |
|
491 |
urldecode( $_root_relative_current ), |
|
492 |
); |
|
0 | 493 |
|
16 | 494 |
if ( $raw_item_url && in_array( $item_url, $matches, true ) ) { |
9 | 495 |
$classes[] = 'current-menu-item'; |
496 |
$menu_items[ $key ]->current = true; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
497 |
$ancestor_id = (int) $menu_item->db_id; |
9 | 498 |
|
499 |
while ( |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
500 |
( $ancestor_id = (int) get_post_meta( $ancestor_id, '_menu_item_menu_item_parent', true ) ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
501 |
&& ! in_array( $ancestor_id, $active_ancestor_item_ids, true ) |
0 | 502 |
) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
503 |
$active_ancestor_item_ids[] = $ancestor_id; |
0 | 504 |
} |
505 |
||
16 | 506 |
if ( in_array( home_url(), array( untrailingslashit( $current_url ), untrailingslashit( $_indexless_current ) ), true ) ) { |
507 |
// Back compat for home link to match wp_page_menu(). |
|
0 | 508 |
$classes[] = 'current_page_item'; |
509 |
} |
|
9 | 510 |
$active_parent_item_ids[] = (int) $menu_item->menu_item_parent; |
0 | 511 |
$active_parent_object_ids[] = (int) $menu_item->post_parent; |
9 | 512 |
$active_object = $menu_item->object; |
0 | 513 |
|
16 | 514 |
// Give front page item the 'current-menu-item' class when extra query arguments are involved. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
515 |
} elseif ( $item_url === $front_page_url && is_front_page() ) { |
0 | 516 |
$classes[] = 'current-menu-item'; |
517 |
} |
|
518 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
519 |
if ( untrailingslashit( $item_url ) === home_url() ) { |
0 | 520 |
$classes[] = 'menu-item-home'; |
9 | 521 |
} |
0 | 522 |
} |
523 |
||
16 | 524 |
// Back-compat with wp_page_menu(): add "current_page_parent" to static home page link for any non-page query. |
525 |
if ( ! empty( $home_page_id ) && 'post_type' === $menu_item->type |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
526 |
&& empty( $wp_query->is_page ) && $home_page_id === (int) $menu_item->object_id |
16 | 527 |
) { |
0 | 528 |
$classes[] = 'current_page_parent'; |
9 | 529 |
} |
0 | 530 |
|
9 | 531 |
$menu_items[ $key ]->classes = array_unique( $classes ); |
0 | 532 |
} |
533 |
$active_ancestor_item_ids = array_filter( array_unique( $active_ancestor_item_ids ) ); |
|
9 | 534 |
$active_parent_item_ids = array_filter( array_unique( $active_parent_item_ids ) ); |
0 | 535 |
$active_parent_object_ids = array_filter( array_unique( $active_parent_object_ids ) ); |
536 |
||
16 | 537 |
// Set parent's class. |
0 | 538 |
foreach ( (array) $menu_items as $key => $parent_item ) { |
9 | 539 |
$classes = (array) $parent_item->classes; |
540 |
$menu_items[ $key ]->current_item_ancestor = false; |
|
541 |
$menu_items[ $key ]->current_item_parent = false; |
|
0 | 542 |
|
543 |
if ( |
|
16 | 544 |
isset( $parent_item->type ) |
545 |
&& ( |
|
546 |
// Ancestral post object. |
|
0 | 547 |
( |
16 | 548 |
'post_type' === $parent_item->type |
549 |
&& ! empty( $queried_object->post_type ) |
|
550 |
&& is_post_type_hierarchical( $queried_object->post_type ) |
|
551 |
&& in_array( (int) $parent_item->object_id, $queried_object->ancestors, true ) |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
552 |
&& (int) $parent_item->object_id !== $queried_object->ID |
0 | 553 |
) || |
554 |
||
16 | 555 |
// Ancestral term. |
0 | 556 |
( |
16 | 557 |
'taxonomy' === $parent_item->type |
558 |
&& isset( $possible_taxonomy_ancestors[ $parent_item->object ] ) |
|
559 |
&& in_array( (int) $parent_item->object_id, $possible_taxonomy_ancestors[ $parent_item->object ], true ) |
|
560 |
&& ( |
|
0 | 561 |
! isset( $queried_object->term_id ) || |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
562 |
(int) $parent_item->object_id !== $queried_object->term_id |
0 | 563 |
) |
564 |
) |
|
565 |
) |
|
566 |
) { |
|
16 | 567 |
if ( ! empty( $queried_object->taxonomy ) ) { |
568 |
$classes[] = 'current-' . $queried_object->taxonomy . '-ancestor'; |
|
569 |
} else { |
|
570 |
$classes[] = 'current-' . $queried_object->post_type . '-ancestor'; |
|
571 |
} |
|
0 | 572 |
} |
573 |
||
16 | 574 |
if ( in_array( (int) $parent_item->db_id, $active_ancestor_item_ids, true ) ) { |
575 |
$classes[] = 'current-menu-ancestor'; |
|
576 |
||
9 | 577 |
$menu_items[ $key ]->current_item_ancestor = true; |
0 | 578 |
} |
16 | 579 |
if ( in_array( (int) $parent_item->db_id, $active_parent_item_ids, true ) ) { |
580 |
$classes[] = 'current-menu-parent'; |
|
581 |
||
9 | 582 |
$menu_items[ $key ]->current_item_parent = true; |
0 | 583 |
} |
16 | 584 |
if ( in_array( (int) $parent_item->object_id, $active_parent_object_ids, true ) ) { |
0 | 585 |
$classes[] = 'current-' . $active_object . '-parent'; |
9 | 586 |
} |
0 | 587 |
|
16 | 588 |
if ( 'post_type' === $parent_item->type && 'page' === $parent_item->object ) { |
589 |
// Back compat classes for pages to match wp_page_menu(). |
|
590 |
if ( in_array( 'current-menu-parent', $classes, true ) ) { |
|
0 | 591 |
$classes[] = 'current_page_parent'; |
9 | 592 |
} |
16 | 593 |
if ( in_array( 'current-menu-ancestor', $classes, true ) ) { |
0 | 594 |
$classes[] = 'current_page_ancestor'; |
9 | 595 |
} |
0 | 596 |
} |
597 |
||
9 | 598 |
$menu_items[ $key ]->classes = array_unique( $classes ); |
0 | 599 |
} |
600 |
} |
|
601 |
||
602 |
/** |
|
16 | 603 |
* Retrieves the HTML list content for nav menu items. |
0 | 604 |
* |
605 |
* @uses Walker_Nav_Menu to create HTML list content. |
|
606 |
* @since 3.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
607 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
608 |
* @param array $items The menu items, sorted by each menu item's menu order. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
609 |
* @param int $depth Depth of the item in reference to parents. |
19 | 610 |
* @param stdClass $args An object containing wp_nav_menu() arguments. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
611 |
* @return string The HTML list content for the menu items. |
0 | 612 |
*/ |
19 | 613 |
function walk_nav_menu_tree( $items, $depth, $args ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
614 |
$walker = ( empty( $args->walker ) ) ? new Walker_Nav_Menu() : $args->walker; |
0 | 615 |
|
19 | 616 |
return $walker->walk( $items, $depth, $args ); |
0 | 617 |
} |
618 |
||
619 |
/** |
|
620 |
* Prevents a menu item ID from being used more than once. |
|
621 |
* |
|
622 |
* @since 3.0.1 |
|
623 |
* @access private |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
624 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
625 |
* @param string $id |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
626 |
* @param object $item |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
627 |
* @return string |
0 | 628 |
*/ |
629 |
function _nav_menu_item_id_use_once( $id, $item ) { |
|
630 |
static $_used_ids = array(); |
|
16 | 631 |
|
632 |
if ( in_array( $item->ID, $_used_ids, true ) ) { |
|
0 | 633 |
return ''; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
634 |
} |
16 | 635 |
|
0 | 636 |
$_used_ids[] = $item->ID; |
16 | 637 |
|
0 | 638 |
return $id; |
639 |
} |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
640 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
641 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
642 |
* Remove the `menu-item-has-children` class from bottom level menu items. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
643 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
644 |
* This runs on the {@see 'nav_menu_css_class'} filter. The $args and $depth |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
645 |
* parameters were added after the filter was originally introduced in |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
646 |
* WordPress 3.0.0 so this needs to allow for cases in which the filter is |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
647 |
* called without them. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
648 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
649 |
* @see https://core.trac.wordpress.org/ticket/56926 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
650 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
651 |
* @since 6.2.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
652 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
653 |
* @param string[] $classes Array of the CSS classes that are applied to the menu item's `<li>` element. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
654 |
* @param WP_Post $menu_item The current menu item object. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
655 |
* @param stdClass|false $args An object of wp_nav_menu() arguments. Default false ($args unspecified when filter is called). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
656 |
* @param int|false $depth Depth of menu item. Default false ($depth unspecified when filter is called). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
657 |
* @return string[] Modified nav menu classes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
658 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
659 |
function wp_nav_menu_remove_menu_item_has_children_class( $classes, $menu_item, $args = false, $depth = false ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
660 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
661 |
* Account for the filter being called without the $args or $depth parameters. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
662 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
663 |
* This occurs when a theme uses a custom walker calling the `nav_menu_css_class` |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
664 |
* filter using the legacy formats prior to the introduction of the $args and |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
665 |
* $depth parameters. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
666 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
667 |
* As both of these parameters are required for this function to determine |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
668 |
* both the current and maximum depth of the menu tree, the function does not |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
669 |
* attempt to remove the `menu-item-has-children` class if these parameters |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
670 |
* are not set. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
671 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
672 |
if ( false === $depth || false === $args ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
673 |
return $classes; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
674 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
675 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
676 |
// Max-depth is 1-based. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
677 |
$max_depth = isset( $args->depth ) ? (int) $args->depth : 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
678 |
// Depth is 0-based so needs to be increased by one. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
679 |
$depth = $depth + 1; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
680 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
681 |
// Complete menu tree is displayed. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
682 |
if ( 0 === $max_depth ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
683 |
return $classes; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
684 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
685 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
686 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
687 |
* Remove the `menu-item-has-children` class from bottom level menu items. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
688 |
* -1 is used to display all menu items in one level so the class should |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
689 |
* be removed from all menu items. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
690 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
691 |
if ( -1 === $max_depth || $depth >= $max_depth ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
692 |
$classes = array_diff( $classes, array( 'menu-item-has-children' ) ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
693 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
694 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
695 |
return $classes; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
696 |
} |