Friends of Castle Park LogoCastle Park Logo

News

The Friends of Castle Park Winter Tree ID

A photo of people at the Friends of Castle Park Winter Tree ID February 2023
Some of the Friends of Castle Park.

Thank you to all that joined us for our Winter Tree Identification activity!

We had a lovely walk around the park looking at the different trees and the features to look out for when trying to identify them. We are pleased to say that everyone passed the test at the end of the session and managed to correctly identify Ash, Oak, Horse Chestnut, Alder and Hazel. xxx

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