You're Invited! Register below to claim your ticket for a VIP experience to watch the Rangers play the Milwaukee Brewers! Join us in our suite to get to know your GTS sales reps! Go Rangers! **This invite is for invited customers and participating sponsors only.
add_shortcode('tec_event_location', function() {
// 1. Check if The Events Calendar is active to avoid errors
if ( ! function_exists('tribe_get_venue_id') ) {
return '';
}
// 2. Get the current Event ID
$event_id = get_the_ID();
// 3. Get the Venue ID linked to this event
$venue_id = tribe_get_venue_id($event_id);
// 4. If no venue is attached, return empty
if ( ! $venue_id ) {
return 'Online / No Location';
}
// 5. Get the address parts safely
$address = tribe_get_address($venue_id);
$city = tribe_get_city($venue_id);
$state = tribe_get_region($venue_id);
$zip = tribe_get_zip($venue_id);
// 6. Combine them into a single string for Outlook
// Result: "123 Main St, Austin, TX 78701"
$full_address = sprintf('%s, %s, %s %s', $address, $city, $state, $zip);
return $full_address;
});