Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_wp_delete_post_menu_item() WordPress Function

The _wp_delete_post_menu_item() function is used to delete a post menu item from the WordPress database. This function takes two parameters: the menu item ID and the menu item object. The menu item ID is the ID of the menu item to be deleted, and the menu item object is the menu item object that contains information about the menu item.

_wp_delete_post_menu_item( int $object_id ) #

Callback for handling a menu item when its original object is deleted.


Parameters

$object_id

(int)(Required)The ID of the original object being trashed.


Top ↑

Source

File: wp-includes/nav-menu.php

function _wp_delete_post_menu_item( $object_id ) {
	$object_id = (int) $object_id;

	$menu_item_ids = wp_get_associated_nav_menu_items( $object_id, 'post_type' );

	foreach ( (array) $menu_item_ids as $menu_item_id ) {
		wp_delete_post( $menu_item_id, true );
	}
}


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.