apply_filters( 'nav_menu_link_attributes', array $atts, WP_Post $menu_item, stdClass $args, int $depth )

Filters the HTML attributes applied to a menu item’s anchor element.


Parameters

$atts

The HTML attributes applied to the menu item's <a> element, empty strings are ignored.<br>

  • 'title'
    (string) Title attribute.<br>
  • 'target'
    (string) Target attribute.<br>
  • 'rel'
    (string) The rel attribute.<br>
  • 'href'
    (string) The href attribute.<br>
  • 'aria-current'
    (string) The aria-current attribute.<br>

$menu_item

The current menu item object.

$args

An object of wp_nav_menu() arguments.

$depth

Depth of menu item. Used for padding.


Source

File: wp-includes/class-walker-nav-menu.php

View on GitHub



Changelog

Changelog
Version Description
4.1.0 The $depth parameter was added.
3.6.0 Introduced.