wpseek.com
A WordPress-centric search engine for devs and theme authors



_wp_delete_tax_menu_item › WordPress Function

Since3.0.0
Deprecatedn/a
_wp_delete_tax_menu_item ( $object_id, $tt_id, $taxonomy )
Access:
  • private
Parameters: (3)
  • (int) $object_id The ID of the original object being trashed.
    Required: Yes
  • (int) $tt_id Term taxonomy ID. Unused.
    Required: Yes
  • (string) $taxonomy Taxonomy slug.
    Required: Yes
Defined at:
Codex:

Serves as a callback for handling a menu item when its original object is deleted.



Source

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 );
	}
}