WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about nav_menu_link_attributes

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/class-walker-nav-menu.php apply_filters 207 /**
* Filters the HTML attributes applied to a menu item's anchor element.
*
* @since 3.6.0
* @since 4.1.0 The `$depth` parameter was added.
*
* @param array $atts {
* The HTML attributes applied to the menu item's `` 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.
* }
* @param WP_Post $menu_item The current menu item object.
* @param stdClass $args An object of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
*/

Hook Parameters

Parameter Type Name Description
array $att s {
WP_Post $menu_item The current menu item object.
stdClass $args An object of wp_nav_menu() arguments.
int $depth Depth of menu item. Used for padding.