Friends of Castle Park LogoCastle Park Logo

Events, News

Bird Walk with RSPB Group

15th October 2024 | 10.12am

A photo of some enthusiastic bird watchers at the Bird Walk at Castle Park with the RSPB Group

Open to all.
Sign up today for email notifications or send an email to:
conservation@friendsofcastlepark.org

We always meet at the Link Road car park entrance.

Postcode: Link Road Car Park, CM23 2BA

What3words: minute.strut.loser

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