nav_menu_item_title WordPress Filter Hook

The nav_menu_item_title hook is used to filter the title of a menu item before it is printed. This hook can be used to modify or add data to the title before it is displayed.

apply_filters( 'nav_menu_item_title', string $title, WP_Post $menu_item, stdClass $args, int $depth ) #

Filters a menu item’s title.


Parameters

$title

(string)The menu item's title.

$menu_item

(WP_Post)The current menu item object.

$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.4.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.