Friends of Castle Park LogoCastle Park Logo

Events

Heritage Day at Castle Park

15th April 2023 | 10.00am

Heritage Day April 2023 at Castle Park

Join the Friends of Castle Park at their annual Castle Park Heritage Day!
Bishop’s Stortford Natural History Society and the town’s River Group will also be joining the Friends of Castle Park in celebrating the rich heritage of the local area.

There is a packed day of FREE family activities, including:

  • Children’s archaeology activities with Museum of London Archaeology
  • Arts and crafts with Friends of Castle Park
  • Tours of Waytemore Castle (at 10:30am and 1:30pm) with Museum of London Archaeology
  • Medieval themed archery and axe throwing with On Targett Events (suitable for age 8+)
  • Falconry displays from Coda Falconry (at 11:00am and 2:00pm)

<?php
$gallery = get_field('event_gallery', get_the_ID());
if ($gallery) : ?>
    <div class="event-gallery-grid"> <!-- Grid container -->
        <?php
        // Get 12 random images (use array_rand for random selection)
        $random_images = array_rand($gallery, 12); 
        foreach ((array)$random_images as $image) :
            $img_url = $gallery[$image]['url'];
            $img_alt = $gallery[$image]['alt'];
        ?>
            <div class="event-gallery-image">
                <!-- Anchor tag that links to the full image -->
                <a href="<?php echo $img_url; ?>" target="_blank">
                    <img src="<?php echo $img_url; ?>" alt="A photo of <?php echo $img_alt; ?>" />
                </a>
            </div>
        <?php endforeach; ?>
    </div> <!-- End grid container -->
<?php endif; ?>