apply_filters( 'nav_menu_submenu_attributes', array $atts, stdClass $args, int $depth )

Filters the HTML attributes applied to a menu list element.


Parameters

$atts array
The HTML attributes applied to the <ul> element, empty strings are ignored.
  • class string
    HTML CSS class attribute.
$args stdClass
An object of wp_nav_menu() arguments.
$depth int
Depth of menu item. Used for padding.

Top ↑

Source

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

$atts       = apply_filters( 'nav_menu_submenu_attributes', $atts, $args, $depth );


Top ↑

Changelog

Changelog
Version Description
6.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.