nav_menu_submenu_css_class WordPress Filter Hook

The nav_menu_submenu_css_class hook is used to add a custom class to the ul element that contains a sub-menu. This is useful if you want to style the sub-menu differently from the rest of the menu.

apply_filters( 'nav_menu_submenu_css_class', string[] $classes, stdClass $args, int $depth ) #

Filters the CSS class(es) applied to a menu list element.


Parameters

$classes

(string[])Array of the CSS classes that are applied to the menu <ul> element.

$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 on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.