wp_update_nav_menu_item WordPress Action Hook

The wp_update_nav_menu_item hook is called when a navigation menu item is updated. This hook can be used to perform custom actions when a navigation menu item is updated.

do_action( 'wp_update_nav_menu_item', int $menu_id, int $menu_item_db_id, array $args ) #

Fires after a navigation menu item has been updated.


Description

Top ↑

See also


Top ↑

Parameters

$menu_id

(int)ID of the updated menu.

$menu_item_db_id

(int)ID of the updated menu item.

$args

(array)An array of arguments used to update a menu item.


Top ↑

Source

File: wp-includes/nav-menu.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.0.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.