How to see if event is featured in PHP? [closed]
I believe you would want to use this function (from the-events-calendar/src/Tribe/Featured_Events.php:45): /** * Confirms if an event is featured. * @param int|WP_Post $event * * @return bool */ public function is_featured( $event = null ) { $event_id = Tribe__Main::post_id_helper( $event ); if ( ! $event_id ) { return false; } return (bool) get_post_meta( $event_id, self::FEATURED_EVENT_KEY, … Read more