On this page
_wp_delete_tax_menu_item( int $object_id, int $tt_id, string $taxonomy )
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.
Serves as a callback for handling a menu item when its original object is deleted.
Parameters
$object_idint Required-
The ID of the original object being trashed.
$tt_idint Required-
Term taxonomy ID. Unused.
$taxonomystring Required-
Taxonomy slug.
Source
File: wp-includes/nav-menu.php. View all references
function _wp_delete_tax_menu_item( $object_id, $tt_id, $taxonomy ) {
$object_id = (int) $object_id;
$menu_item_ids = wp_get_associated_nav_menu_items( $object_id, 'taxonomy', $taxonomy );
foreach ( (array) $menu_item_ids as $menu_item_id ) {
wp_delete_post( $menu_item_id, true );
}
}
Related
Uses
| Uses | Description |
|---|---|
| wp_delete_post() wp-includes/post.php | Trashes or deletes a post or page. |
| wp_get_associated_nav_menu_items() wp-includes/nav-menu.php | Returns the menu items associated with a particular object. |
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_wp_delete_tax_menu_item