wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



nav_menu_link_attributes › WordPress Filter Hooks

Seit4.1.0
Veraltetn/v
apply_filters( 'nav_menu_link_attributes', $atts, $menu_item, $args, $depth )
Parameter: (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. }
    Erforderlich: Ja
  • (WP_Post) $menu_item The current menu item object.
    Erforderlich: Ja
  • (stdClass) $args An object of wp_nav_menu() arguments.
    Erforderlich: Ja
  • (int) $depth Depth of menu item. Used for padding.
    Erforderlich: Ja
Definiert in:
Codex:

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





Quellcode

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