deleted_term_relationships WordPress Action Hook

The deleted_term_relationships hook is called after a relationship between a term and an object is deleted. This hook is similar to the deleted_term hook, which runs after a term is deleted. However, the deleted_term_relationships hook only runs when a relationship between a term and an object is deleted. This hook can be useful for clean-up tasks such as deleting term meta or removing relationships from a custom taxonomy.

do_action( 'deleted_term_relationships', int $object_id, array $tt_ids, string $taxonomy ) #

Fires immediately after an object-term relationship is deleted.


Parameters

$object_id

(int)Object ID.

$tt_ids

(array)An array of term taxonomy IDs.

$taxonomy

(string)Taxonomy slug.


Top ↑

Source

File: wp-includes/taxonomy.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.7.0Added the $taxonomy parameter.
2.9.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.

Show More
Show More