bp_groups_reset_cache_incrementor_on_group_term_remove( int $object_id, array $terms, string $taxonomy )

Reset cache incrementor for Groups component when a group’s taxonomy terms are removed.


Description Description

We infer that a group is being affected by looking at the objects belonging to the taxonomy being affected.


Parameters Parameters

$object_id

(Required) ID of the item whose terms are being modified.

$terms

(Required) Array of object terms.

$taxonomy

(Required) Taxonomy slug.


Top ↑

Return Return

(bool) True on success, false on failure.


Top ↑

Source Source

File: bp-groups/bp-groups-cache.php

function bp_groups_reset_cache_incrementor_on_group_term_remove( $object_id, $terms, $taxonomy ) {
	$tax_object = get_taxonomy( $taxonomy );
	if ( $tax_object && in_array( 'bp_group', $tax_object->object_type, true ) ) {
		return bp_groups_reset_cache_incrementor();
	}

	return false;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.