rest_prepare_nav_menu_item WordPress Filter Hook

The rest_prepare_nav_menu_item hook is used to prepare menu items for the REST API. This hook is used to add extra data to menu items, such as the URL and title.

apply_filters( 'rest_prepare_nav_menu_item', WP_REST_Response $response, object $menu_item, WP_REST_Request $request ) #

Filters the menu item data for a REST API response.


Parameters

$response

(WP_REST_Response)The response object.

$menu_item

(object)Menu item setup by wp_setup_nav_menu_item().

$request

(WP_REST_Request)Request object.


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.