nav_menu_link_attributes

Advertisement

Summery Summery

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

Syntax Syntax

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

Parameters Parameters

$atts

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

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

$item

The current menu item.

$args

An object of wp_nav_menu() arguments.

$depth

Depth of menu item. Used for padding.

Source Source

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

Advertisement

Changelog Changelog

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

Advertisement

Leave a Reply