Friends of Castle Park LogoCastle Park Logo

Events, News

The Friends of Castle Park Tidy up the Castle Mound

Click image for details

A photo of the Litter Pick and Vegetation Clearance volunteers at Castle Park.

What a lovely Saturday morning out in the fresh air! Thank you to all the wonderful volunteers who helped us clear up litter and vegetation from the castle mound. The weather was ideal and we achieved a lot in a short time. The heritage of this site is so important and keeping the area clear of litter and removing problematic vegetation contributes towards protecting the historic castle walls and highlights the beauty of the space.

To get involved with future conservation activities, please contact: conservation@friendsofcastlepark.org

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