You need to be signed in to manage your venue listings. Sign in
/* ===================================================== DOVETAIL HUB – PULL EVENTS FROM COUNTY SITES SHORTCODE: [dovetail_events] ===================================================== */ function dovetail_events_shortcode() { $sources = [ 'https://suffolk.dovetailevents.co.uk', 'https://essex.dovetailevents.co.uk' ]; $events = []; foreach ($sources as $source) { $response = wp_remote_get($source . '/wp-json/wp/v2/event_listing?per_page=50&_embed'); if (is_wp_error($response)) continue; $data = json_decode(wp_remote_retrieve_body($response), true); if (!$data) continue; foreach ($data as $event) { $events[] = [ 'title' => $event['title']['rendered'], 'link' => $event['link'], 'date' => $event['meta']['_event_start_date'] ?? '', 'image' => $event['_embedded']['wp:featuredmedia'][0]['source_url'] ?? '' ]; } } if (!$events) return '
No events found.
'; usort($events, function($a, $b){ return strtotime($a['date']) - strtotime($b['date']); }); ob_start(); echo 'You need to be signed in to manage your venue listings. Sign in