diff --git src/wp-includes/class-walker-nav-menu.php src/wp-includes/class-walker-nav-menu.php
index 43eaa91..38992f2 100644
|
|
class Walker_Nav_Menu extends Walker { |
180 | 180 | */ |
181 | 181 | $title = apply_filters( 'nav_menu_item_title', $title, $item, $args, $depth ); |
182 | 182 | |
183 | | $item_output = $args->before; |
| 183 | $item_output = $args['before']; |
184 | 184 | $item_output .= '<a'. $attributes .'>'; |
185 | | $item_output .= $args->link_before . $title . $args->link_after; |
| 185 | $item_output .= $args['link_before'] . $title . $args['link_after']; |
186 | 186 | $item_output .= '</a>'; |
187 | | $item_output .= $args->after; |
| 187 | $item_output .= $args['after']; |
188 | 188 | |
189 | 189 | /** |
190 | 190 | * Filters a menu item's starting output. |