Changeset 38984 for trunk/src/wp-includes/class-wp-admin-bar.php
- Timestamp:
- 10/27/2016 08:52:20 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-admin-bar.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-admin-bar.php
r38468 r38984 475 475 return; 476 476 477 $is_parent = ! empty( $node->children ); 478 $has_link = ! empty( $node->href ); 477 $is_parent = ! empty( $node->children ); 478 $has_link = ! empty( $node->href ); 479 $is_root_top_item = 'root-default' === $node->parent; 480 $is_top_secondary_item = 'top-secondary' === $node->parent; 479 481 480 482 // Allow only numeric values, then casted to integers, and allow a tabindex value of `0` for a11y. … … 482 484 $aria_attributes = ( '' !== $tabindex ) ? ' tabindex="' . $tabindex . '"' : ''; 483 485 484 $menuclass = '';486 $menuclass = $arrow_right = ''; 485 487 486 488 if ( $is_parent ) { 487 489 $menuclass = 'menupop '; 488 490 $aria_attributes .= ' aria-haspopup="true"'; 491 } 492 493 // Print the right arrow icon for the primary menu children with children. 494 if ( ! $is_root_top_item && ! $is_top_secondary_item && $is_parent ) { 495 $arrow_right = '<span class="wp-admin-bar-arrow-right" aria-hidden="true"></span>'; 489 496 } 490 497 … … 533 540 endif; 534 541 535 echo $ node->title;542 echo $arrow_right . $node->title; 536 543 537 544 if ( $has_link ) :
Note: See TracChangeset
for help on using the changeset viewer.