wpseek.com
A WordPress-centric search engine for devs and theme authors



nav_menu_link_attributes › WordPress Filter Hooks

Since4.1.0
Deprecatedn/a
apply_filters( 'nav_menu_link_attributes', $atts, $menu_item, $args, $depth )
Parameters: (4)
  • (array) $atts { The HTML attributes applied to the menu item's `<a>` element, empty strings are ignored. @type string $title Title attribute. @type string $target Target attribute. @type string $rel The rel attribute. @type string $href The href attribute. @type string $aria-current The aria-current attribute. }
    Required: Yes
  • (WP_Post) $menu_item The current menu item object.
    Required: Yes
  • (stdClass) $args An object of wp_nav_menu() arguments.
    Required: Yes
  • (int) $depth Depth of menu item. Used for padding.
    Required: Yes
Defined at:
Codex:

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





Source

$atts       = apply_filters( 'nav_menu_link_attributes', $atts, $menu_item, $args, $depth );