wp_nav_menu_max_depth( string $classes ): string

In this article

Adds a CSS class to display the max depth of the navigation menu.

Parameters

$classesstringrequired
Existing CSS classes for the body tag.

Return

string Modified CSS classes including the menu max depth class.

Source

function wp_nav_menu_max_depth( $classes ) {
	global $_wp_nav_menu_max_depth;
	return "$classes menu-max-depth-$_wp_nav_menu_max_depth";
}

Changelog

VersionDescription
3.0.0Introduced.

User Contributed Notes

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