Friends of Castle Park LogoCastle Park Logo

Health & Wellbeing, Regular Events

Park Run

Every Saturday at 8:50am

Park Run at Castle Park, Bishops Stortford

A free, fun, and friendly weekly 5k community event. Walk, jog, run, volunteer or spectate – it’s up to you!

We meet at the bandstand at 8.50am for a briefing and ready to start at 9am. You need to have registered with Parkrun beforehand and receive your barcode!

What does it cost to join in?

Nothing – it’s free! but please register when Parkrun before you first come along. Only ever register with parkrun ONCE and don’t forget to bring a scannable copy of your barcode, if you forget it, you won’t get a registered time.

How fast do I have to be?

We all take part for our own enjoyment. Please come along and join in whatever your pace!

Further Information about this event

See up-to-date information about this ParkRun here

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