Uses
Uses | Description |
---|---|
wp-includes/post.php: wp_delete_post() | Trash or delete a post or page. |
wp-includes/nav-menu.php: wp_get_associated_nav_menu_items() | Get the menu items associated with a particular object. |
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.
Callback for handling a menu item when its original object is deleted.
(int) (Required) The ID of the original object being trashed.
File: wp-includes/nav-menu.php
function _wp_delete_post_menu_item( $object_id = 0 ) { $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 ); } }
Version | Description |
---|---|
3.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_wp_delete_post_menu_item