wordpress-activitypub-event.../improvements.md
André Menrath 7e8346cf7b
All checks were successful
PHP Code Checker / PHP Code Checker (push) Successful in 37s
PHPUnit / PHPUnit – PHP 8.1 (push) Successful in 1m0s
PHPUnit / PHPUnit – PHP 8.2 (push) Successful in 1m4s
PHPUnit / PHPUnit – PHP 8.3 (push) Successful in 1m8s
Add Transformer and Integration tests for Modern Events Calendar Lite (#66)
https://webnus.net/modern-events-calendar/
Reviewed-on: #66
Co-authored-by: André Menrath <andre.menrath@posteo.de>
Co-committed-by: André Menrath <andre.menrath@posteo.de>
2024-10-18 13:54:53 +02:00

459 B

Make use of:

https://docs.theeventscalendar.com/reference/classes/tribe__events__api/get_event_terms/

for getting all tags/terms for an event!

public static function get_event_terms( $event_id, array $args = array() ) {
    $terms = array();
    foreach ( get_post_taxonomies( $event_id ) as $taxonomy ) {
        $tax_terms = wp_get_object_terms( $event_id, $taxonomy, $args );
        $terms[ $taxonomy ] = $tax_terms;
    }
    return $terms;
}