{"id":14177,"date":"2025-06-24T10:31:04","date_gmt":"2025-06-24T09:31:04","guid":{"rendered":"https:\/\/visit-caerphilly.local\/?post_type=events&#038;p=14177"},"modified":"2026-04-24T11:57:27","modified_gmt":"2026-04-24T10:57:27","slug":"the-take-that-experience","status":"publish","type":"events","link":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/","title":{"rendered":"The Take That Experience"},"content":{"rendered":"\n\n\t\t\t<div class=\"wrapper\">\n\t\t\t<section id=\"\" class=\"block video-block\">\t\n\t\t\t\t<div class=\"row\">\n\t\t\t\t\t<div class=\"video-wrap embed-container\">\n\t\t\t\t\t\t<iframe loading=\"lazy\" title=\"Promo The Take That Experience\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/w7pxYXnTz8M?feature=oembed&#038;controls=0&#038;hd=1&#038;autohide=1&#038;autoplay=1&#038;mute=1&#038;modestbranding=1&#038;loop=1&#038;playlist=w7pxYXnTz8M\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen frameborder=\"0\"><\/iframe>\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t<\/section>\n\t\t<\/div>\n\n\t\n\n\n\n\t<section id=\"\" class=\"block text-block\">\n\t\t<div class=\"wrapper\">\n\t\t\t<h3><a href=\"https:\/\/www.blackwoodminersinstitute.com\/en\/whats-on\/the-take-that-experience\/\">Book your tickets here!<\/a><\/h3>\n<p>As Take That celebrate over 30 years as the UK\u2019s number one boy band, The Take That Experience mark over a decade together as their most popular and recognised tribute act.<\/p>\n<p>With acclaimed vocal performances, stunning replica costumes and iconic dance routines, The Take That Experience recreate the magic of Take That live on stage with their \u2018Greatest Hits Tour\u2019.<\/p>\n<p><em><strong>\u201cTHE CLOSEST THING TO TAKE THAT\u201d \u2013 NIGEL MARTIN-SMITH<\/strong><\/em><\/p>\n<p>This incredible show features hit after hit from Take That\u2019s career spanning three decades \u2013 from classic 90s hits through to their most recent triumphs. Songs include Pray, Relight My Fire, Patience, Shine, These Days, Rule The World and many more.<\/p>\n<p>The show also features the one and only \u201cRobbie Williams\u201d who brings alive songs such as \u201c\u2018Angels\u2019, \u2018Rock DJ\u2019 and \u2018Candy\u2019 to an already explosive show!<\/p>\n<p><em><strong>\u201cA SHOW YOU\u2019LL NEVER FORGET\u201d \u2013 AUDIENCE MEMBER<\/strong><\/em><\/p>\n<p>This show is a must for any Take That fan as the boys don\u2019t just give you a night you\u2019ll Never Forget\u2026 they give you The Take That Experience!<\/p>\n<p><em><strong>\u201cONE WORD \u2013 AMAZING!\u201d \u2013 RUSSELL WATSON<\/strong><\/em><\/p>\n\t\t<\/div>\n\t<\/section>\n\t\n\n<script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyCNYY6aenor9lbT84cYrEb5gzYo8p_fKiU\"><\/script>\n<script src=\"https:\/\/unpkg.com\/@googlemaps\/markerclusterer\/dist\/index.min.js\"><\/script>\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/OverlappingMarkerSpiderfier\/1.0.3\/oms.min.js\"><\/script>\n\n<script type=\"text\/javascript\">\n(function($) {\n\n    \/\/ Init all maps\n    $(document).ready(function() {\n\t\t$('.acf-map').each(function(i, el) {\n\t\t\tsetTimeout(() => {\n\t\t\t\tinitMap($(el));\n\t\t\t}, i * 200); \/\/ stagger loading slightly per map\n\t\t});\n\t});\n\n    \/\/ Initialize individual map\n    function initMap($el) {\n        var $markers = $el.find('.marker');\n        var markers = [];\n\n        var mapArgs = {\n            zoom: $el.data('zoom') || 16,\n            mapTypeId: google.maps.MapTypeId.ROADMAP,\n            center: { lat: 0, lng: 0 }\n        };\n\n        var map = new google.maps.Map($el[0], mapArgs);\n\n        $markers.each(function() {\n            var marker = initMarker($(this), map);\n            markers.push(marker);\n        });\n\n        centerMap(map, markers);\n\n        \/\/ Spiderfier\n        var oms = new OverlappingMarkerSpiderfier(map, {\n            markersWontMove: true,\n            markersWontHide: true,\n            keepSpiderfied: true\n        });\n\n        markers.forEach(function(marker) {\n            oms.addMarker(marker);\n        });\n\n        \/\/ MarkerClusterer\n        new MarkerClusterer(map, markers, {\n            imagePath: 'https:\/\/developers.google.com\/maps\/documentation\/javascript\/examples\/markerclusterer\/m'\n        });\n\t\t\n\t\tgoogle.maps.event.trigger(map, 'resize');\n    }\n\n    \/\/ Create individual marker\n    function initMarker($marker, map) {\n        var lat = parseFloat($marker.data('lat'));\n        var lng = parseFloat($marker.data('lng'));\n        var latLng = { lat, lng };\n\n        var image = \"https:\/\/www.visitcaerphilly.com\/wp-content\/themes\/visitcaerphilly\/assets\/images\/map-marker-pin.png\";\n\n        var marker = new google.maps.Marker({\n            position: latLng,\n            map: map,\n            icon: image\n        });\n\n        if ($marker.html()) {\n            var infowindow = new google.maps.InfoWindow({\n                content: $marker.html()\n            });\n\n            marker.addListener('click', function() {\n                infowindow.open(map, marker);\n            });\n\n            marker.addListener('spider_click', function() {\n                infowindow.open(map, marker);\n            });\n        }\n\n        return marker;\n    }\n\n    \/\/ Center map based on markers\n    function centerMap(map, markers) {\n        var bounds = new google.maps.LatLngBounds();\n\n        markers.forEach(function(marker) {\n            bounds.extend(marker.getPosition());\n        });\n\n        if (markers.length === 1) {\n            map.setCenter(bounds.getCenter());\n            map.setZoom(map.zoom || 16);\n        } else {\n            map.fitBounds(bounds);\n        }\n    }\n\n})(jQuery);\n<\/script>\n\n\t<div class=wrapper>\n\t\t<section id=\"\" class=\"block events-block \" style=\"background-color: ;\">\n\t\t\t<div class=\"block-title\">\n\t\t\t\t<div class=\"block-title-items\">\n\t\t\t\t\t<i class=\"fa-solid fa-calendar-star\" aria-hidden=\"true\"><\/i><h2>Blackwood Miners&#039; Institute Events<\/h2>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"view-toggle\">\n\t\t\t\t\t<button id=\"listViewBtn\"><i class=\"fa-solid fa-list-ul\"><\/i>List view<\/button>\n\t\t\t\t\t<button id=\"gridViewBtn\"><i class=\"fa-solid fa-grid\"><\/i>Thumbnail view<\/button>\n\t\t\t\t\t<button id=\"mapViewBtn\"><i class=\"fa-solid fa-map-location-dot\"><\/i>Map view<\/button>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<!-- List View -->\n\t\t\t<div id=\"listView\" class=\"view-mode\">\n\t\t\t\t<div class=\"featured-content-wrap\">\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/Pal-Puffin-Blackwood-Miners-Institute.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pal-puffin\/\"><h3>P\u00e2l | Puffin<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t16 June 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/10\/Pit-Party.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pit-party\/\"><h3>Pit Party<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t26 June 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2024\/03\/492801145_1257985702994987_6892394057613430297_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/lipstick-on-your-collar-at-blackwood-miners-institute\/\"><h3>Lipstick on Your Collar<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t27 June 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-History-of-Soul-Blackwood-Miners-Institute.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-history-of-soul\/\"><h3>The History of Soul<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t11 September 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-Rocket-Man-A-Tribute-to-Elton-John-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-rocket-man-a-tribute-to-elton-john\/\"><h3>The Rocket Man \u2013 A Tribute to Elton John<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t12 September 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/Pride-and-Prejudish-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pride-and-prejudish\/\"><h3>Pride and Prejud(ish)<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t30 September &#8211; 2 October 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/07\/503840094_1291023143024576_1129900751327141175_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/thank-abba-for-the-music\/\"><h3>Thank ABBA for the Music<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t24 October 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card-list\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"featured-content-image-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content-list\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\"><h3>The Take That Experience<\/h3><\/a>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"event-date-list\">\n\t\t\t\t\t\t\t\t\t21 November 2026\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\n\t\t\t<!-- Grid View -->\n\t\t\t<div id=\"gridView\" class=\"view-mode\" style=\"display: none;\">\n\t\t\t  <div class=\"featured-content-wrap\">\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pal-puffin\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/Pal-Puffin-Blackwood-Miners-Institute.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>P\u00e2l | Puffin<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t16 June 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pit-party\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/10\/Pit-Party.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Pit Party<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t26 June 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/lipstick-on-your-collar-at-blackwood-miners-institute\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2024\/03\/492801145_1257985702994987_6892394057613430297_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Lipstick on Your Collar<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t27 June 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-history-of-soul\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-History-of-Soul-Blackwood-Miners-Institute.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>The History of Soul<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t11 September 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-rocket-man-a-tribute-to-elton-john\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/The-Rocket-Man-A-Tribute-to-Elton-John-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>The Rocket Man \u2013 A Tribute to Elton John<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t12 September 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pride-and-prejudish\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/06\/Pride-and-Prejudish-Blackwood-Miners-Institute.png\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Pride and Prejud(ish)<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t30 September 2026 &#8211; 2 October 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/thank-abba-for-the-music\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/07\/503840094_1291023143024576_1129900751327141175_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>Thank ABBA for the Music<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t24 October 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t\t<article class=\"archive-content-card\">\n\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\">\n\t\t\t\t\t\t\t<div class=\"featured-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg\" alt=\"\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"post-feed-feature-overlay\"><\/div>\n\n\t\t\t\t\t\t\t<div class=\"featured-content-content\">\n\n\t\t\t\t\t\t\t\t<h3>The Take That Experience<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\tBlackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"event-date\">\n\t\t\t\t\t\t\t\t21 November 2026\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/article>\t\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\n\t\t\t<!-- Map View -->\n\t\t\t<div id=\"mapView\" class=\"view-mode\" style=\"display: none;\">\t\n\t\t\t\t<div class=\"container\">\n\t\t\t\t\t<div class=\"map-block-wrap\">\n\t\t\t\t\t\t<div class=\"acf-map\" data-zoom=\"16\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">P\u00e2l | Puffin<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:&#066;&#077;&#073;&#064;c&#097;e&#114;ph&#105;&#108;l&#121;.&#103;o&#118;.&#117;&#107;\">BMI&#064;&#099;a&#101;r&#112;&#104;il&#108;y.&#103;ov.&#117;k<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pal-puffin\/\">More about P\u00e2l | Puffin ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Pit Party<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:BM&#073;&#064;ca&#101;&#114;p&#104;i&#108;ly.&#103;&#111;&#118;&#046;&#117;&#107;\">&#066;&#077;&#073;&#064;&#099;&#097;&#101;rph&#105;&#108;&#108;&#121;.&#103;&#111;&#118;.&#117;&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pit-party\/\">More about Pit Party ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19563746452\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Lipstick on Your Collar<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:BMI&#064;&#099;ae&#114;p&#104;&#105;l&#108;y.gov.u&#107;\">B&#077;&#073;&#064;&#099;a&#101;&#114;phi&#108;l&#121;.g&#111;v&#046;uk<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/lipstick-on-your-collar-at-blackwood-miners-institute\/\">More about Lipstick on Your Collar ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">The History of Soul<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:&#066;M&#073;&#064;&#099;&#097;&#101;r&#112;h&#105;ll&#121;&#046;&#103;&#111;v.uk\">&#066;MI&#064;c&#097;e&#114;&#112;&#104;il&#108;&#121;.g&#111;&#118;&#046;&#117;k<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-history-of-soul\/\">More about The History of Soul ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">The Rocket Man \u2013 A Tribute to Elton John<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:B&#077;&#073;&#064;&#099;&#097;&#101;&#114;phi&#108;&#108;&#121;&#046;go&#118;&#046;uk\">BMI&#064;cae&#114;p&#104;&#105;&#108;&#108;y&#046;&#103;&#111;&#118;&#046;uk<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-rocket-man-a-tribute-to-elton-john\/\">More about The Rocket Man \u2013 A Tribute to Elton John ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Pride and Prejud(ish)<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:BMI&#064;&#099;&#097;&#101;r&#112;&#104;i&#108;l&#121;.&#103;o&#118;.u&#107;\">&#066;&#077;&#073;&#064;caer&#112;hill&#121;.&#103;&#111;&#118;&#046;&#117;&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/pride-and-prejudish\/\">More about Pride and Prejud(ish) ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">Thank ABBA for the Music<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:&#066;MI&#064;c&#097;e&#114;&#112;&#104;i&#108;&#108;&#121;&#046;&#103;&#111;v&#046;&#117;&#107;\">B&#077;I&#064;&#099;&#097;erp&#104;il&#108;y&#046;gov&#046;u&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/thank-abba-for-the-music\/\">More about Thank ABBA for the Music ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"marker\" data-lat=\"51.6694944166\" data-lng=\"-3.19564819336\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"map-content-wrap\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-title\">The Take That Experience<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"map-single-contacts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-location-dot\"><\/i>&nbsp;&nbsp;Blackwood Miners&#8217; Institute, High Street, Blackwood NP12 1BB<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-phone\"><\/i>&nbsp;&nbsp;01495 227206<\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-envelope\"><\/i>&nbsp;&nbsp;<a href=\"mailto:BM&#073;&#064;c&#097;&#101;r&#112;&#104;&#105;lly.go&#118;&#046;u&#107;\">BMI&#064;&#099;&#097;&#101;&#114;&#112;h&#105;&#108;&#108;&#121;.g&#111;v&#046;&#117;&#107;<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t\t<span><i class=\"fa-solid fa-laptop\"><\/i>&nbsp;&nbsp;<a href=\"https:\/\/www.blackwoodminersinstitute.com\/\" target=\"_blank\">Visit website<\/a><\/span>\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\">More about The Take That Experience ><\/a>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t<\/section>\n\t<\/div>\n\n\n\n\n\n\t<div class=\"wrapper\">\n\t\t<section id=\"\" class=\"block featured-content-block\">\n\t\t\t<div class=\"block-title\">\n\t\t\t\t<div class=\"block-title-items\">\n\t\t\t\t\t\t\t\t\t\t\t<i class=\"fa-solid fa-stars\" aria-hidden=\"true\"><\/i>\n\t\t\t\t\t\t\t\t\t\t<h2>Discover More<\/h2>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t<div class=\"featured-content-wrap\">\t\t\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/crai-scout-activity-park\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2026\/04\/Park-2.jpeg\" alt=\"\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>CRAI Activity Park<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/accommodation\/\" rel=\"tag\">Accommodation<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/activities\/\" rel=\"tag\">Attractions &amp; Activities<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/outdoors\/\" rel=\"tag\">Sports &amp; Outdoors<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tMaes-Y-Haf Lane, Newbridge NP11 4RX\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/parc-cwm-darran\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2024\/11\/PCD-Lake-view-scaled.jpg\" alt=\"\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>Parc Cwm Darran<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/activities\/\" rel=\"tag\">Attractions &amp; Activities<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/outdoors\/\" rel=\"tag\">Sports &amp; Outdoors<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tNr Bargoed CF81 9NR\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/bryn-meadows-blas-restaurant\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2018\/06\/Restaurant-conservatory-apron-close-up.jpg\" alt=\"Bryn Meadows, Golf, Hotel &amp; Spa\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>Bryn Meadows Golf, Hotel &#038; Spa &#8211; Blas Restaurant<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/food-and-drink\/\" rel=\"tag\">Food &amp; Drink<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/restaurant\/\" rel=\"tag\">Restaurant<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tMaesycwmmer, Nr Ystrad Mynach, Caerphilly NP12 2RB\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \n                    <article class=\"featured-content-card\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/argoed-baptist-chapel-caffir-ffynnon\/\">\n                            <div class=\"featured-content-image\">\n                                                                    <img decoding=\"async\" src=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2018\/10\/Argoed-Baptist-Chapel-Cafe-cakes.jpg\" alt=\"Argoed Baptist Chapel Cafe cakes\" \/>\n                                                            <\/div>\n\n                            <div class=\"post-feed-feature-overlay\"><\/div>\n\n                            <div class=\"featured-content-content\">\n\n                                <h3>Argoed Baptist Chapel &#8211; Caffi\u2019r Ffynnon<\/h3>\n                                <div class=\"featured-content-types\"><a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/cafe\/\" rel=\"tag\">Cafe<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/food-and-drink\/\" rel=\"tag\">Food &amp; Drink<\/a>, <a href=\"https:\/\/www.visitcaerphilly.com\/en\/type\/restaurant\/\" rel=\"tag\">Restaurant<\/a><\/div>\n                                \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"featured-content-location\">\n                                    \t<i class=\"fa-solid fa-location-dot\" aria-hidden=\"true\"><\/i>\n                                     \tCapel Argoed, High Street, Blackwood NP12 0HQ\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t                            <\/div>\n                        <\/a>\n                    <\/article>\n                \t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t<article class=\"featured-see-more\">\n                        <a href=\"https:\/\/www.visitcaerphilly.com\/en\/listings\/\">\n                            <div class=\"post-feed-feature-overlay-blank\"><\/div>\n\t\t\t\t\t\t\t<h3>See all Featured Businesses<\/h3>\n                        <\/a>\n                    <\/article>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t<\/div>\n\n\n","protected":false},"featured_media":14178,"template":"","meta":{"_acf_changed":true,"inline_featured_image":false,"_links_to":"","_links_to_target":""},"event_category":[933,980],"tc_location":[937,942],"class_list":["post-14177","events","type-events","status-publish","hentry","event_category-live-performances","event_category-music","tc_location-blackwood","tc_location-blackwood-miners-institute"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The Take That Experience | Visit Caerphilly<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Take That Experience | Visit Caerphilly\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/\" \/>\n<meta property=\"og:site_name\" content=\"Visit Caerphilly\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-24T10:57:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"454\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/\",\"url\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/\",\"name\":\"The Take That Experience | Visit Caerphilly\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/498178170_1274236084703282_9221311571512543171_n.jpg\",\"datePublished\":\"2025-06-24T09:31:04+00:00\",\"dateModified\":\"2026-04-24T10:57:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/498178170_1274236084703282_9221311571512543171_n.jpg\",\"contentUrl\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/498178170_1274236084703282_9221311571512543171_n.jpg\",\"width\":1280,\"height\":454},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/the-take-that-experience\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Events\",\"item\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/events\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Live Performances\",\"item\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/event-category\\\/live-performances\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"The Take That Experience\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/\",\"name\":\"Visit Caerphilly\",\"description\":\"Visit Caerphilly\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.visitcaerphilly.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The Take That Experience | Visit Caerphilly","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/","og_locale":"en_GB","og_type":"article","og_title":"The Take That Experience | Visit Caerphilly","og_url":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/","og_site_name":"Visit Caerphilly","article_modified_time":"2026-04-24T10:57:27+00:00","og_image":[{"width":1280,"height":454,"url":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/","url":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/","name":"The Take That Experience | Visit Caerphilly","isPartOf":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/#primaryimage"},"image":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/#primaryimage"},"thumbnailUrl":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg","datePublished":"2025-06-24T09:31:04+00:00","dateModified":"2026-04-24T10:57:27+00:00","breadcrumb":{"@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/#primaryimage","url":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg","contentUrl":"https:\/\/www.visitcaerphilly.com\/wp-content\/uploads\/2025\/06\/498178170_1274236084703282_9221311571512543171_n.jpg","width":1280,"height":454},{"@type":"BreadcrumbList","@id":"https:\/\/www.visitcaerphilly.com\/en\/events\/the-take-that-experience\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.visitcaerphilly.com\/en\/"},{"@type":"ListItem","position":2,"name":"Events","item":"https:\/\/www.visitcaerphilly.com\/en\/events\/"},{"@type":"ListItem","position":3,"name":"Live Performances","item":"https:\/\/www.visitcaerphilly.com\/en\/event-category\/live-performances\/"},{"@type":"ListItem","position":4,"name":"The Take That Experience"}]},{"@type":"WebSite","@id":"https:\/\/www.visitcaerphilly.com\/en\/#website","url":"https:\/\/www.visitcaerphilly.com\/en\/","name":"Visit Caerphilly","description":"Visit Caerphilly","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.visitcaerphilly.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}},"_links":{"self":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/events\/14177","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/events"}],"about":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/types\/events"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/media\/14178"}],"wp:attachment":[{"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/media?parent=14177"}],"wp:term":[{"taxonomy":"event_category","embeddable":true,"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/event_category?post=14177"},{"taxonomy":"tc_location","embeddable":true,"href":"https:\/\/www.visitcaerphilly.com\/en\/wp-json\/wp\/v2\/tc_location?post=14177"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}