rest_insert_nav_menu_item WordPress Action Hook

This hook is used to insert a new navigation menu item into an existing menu. It is called when a new menu item is created. The new menu item is passed as a parameter to the hook.

do_action( 'rest_insert_nav_menu_item', object $nav_menu_item, WP_REST_Request $request, bool $creating ) #

Fires after a single menu item is created or updated via the REST API.


Parameters

$nav_menu_item

(object)Inserted or updated menu item object.

$request

(WP_REST_Request)Request object.

$creating

(bool)True when creating a menu item, false when updating.


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php

View on Trac



Top ↑

Changelog

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