eventorganiser_register_taxonomy_event-tag
(filter)
Filters the event tag taxonomy properties.
Allows you to change the properties and labels of the event tag taxonomy. You can
return false
to prevent the taxonomy from registering. All labels include those
supported by register_taxonomy()
, as well as additional strings:
- view_all_items - Used in drop-down filters for tags
Parameters
array|bool
|
$event_tag_args |
Settings passed to register_taxonomy() in the third argument. Does not register the taxonomy if set to false.
|
Example Usage
add_filter( 'eventorganiser_register_taxonomy_event-tag', 'my_callback_function', 10, 1 );
function my_callback_function( $event_tag_args ){
//Change first value and return it
return $event_tag_args
};