Friends of Castle Park LogoCastle Park Logo

Events

Wildlife in the Park

25th June 2023 | 10.00am

Wildlife in the Park


Sunday 25th June, 10:00am – 3:00pm

The Friends of Castle Park are running this FREE event on Sworder’s Field celebrating nature and wildlife in Castle Park!

Join us for riverfly monitoring, a bug hunt, a guided nature walk, arts and crafts, and a whole host of local wildlife organisations.  

We regularly update our events page and if you see something you are interested in and would like further information, please do not hesitate to contact us via our contact page or email us at committee@friendsofcastlepark.net.

<?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; ?>