Description
Apply a filter the name of a taxonomy
Usage
apply_filters(
'wp_data_sync_taxonomy'
,
$taxonomy
,
$term_name
,
$parent_id
);
Parameters
$taxonomy | string | The name of the taxonomy | $term_name | int | The name of the term | $parent_id | int | The term ID of the parent term |
Code Example
add_filter(
'wp_data_sync_taxonomy',
function
(
$taxonomy
,
$term_name
,
$parent_id
) {
//Do cool stuff here!!
return
$taxonomy
;
), 10, 3 );
Contact us if you need a code example for this hook. We are happy to review your request.