delete_{$taxonomy}

Advertisement

Summery Summery

Fires after a term in a specific taxonomy is deleted.

Syntax Syntax

do_action( "delete_{$taxonomy}", int $term, int $tt_id, mixed $deleted_term, array $object_ids )

Description Description

The dynamic portion of the hook name, $taxonomy, refers to the specific taxonomy the term belonged to.

Parameters Parameters

$term

Term ID.

$tt_id

Term taxonomy ID.

$deleted_term

Copy of the already-deleted term, in the form specified by the parent function. WP_Error otherwise.

$object_ids

List of term object IDs.

Source Source

File: wp-includes/taxonomy.php

Advertisement

Changelog Changelog

Changelog
Version Description
4.5.0 Introduced the $object_ids argument.
2.3.0 Introduced.

Advertisement

Leave a Reply