function verse_of_the_day_shortcode() {
    $json_url = 'https://www.limitless.tv/wp-content/uploads/verse_of_the_day.json'; // Replace with your actual file URL
    
    $current_day = date('z'); // Get the day of the year (0-365)
    $verse_data = file_get_contents($json_url); // Fetch JSON data
    $verses = json_decode($verse_data, true);

    if (!$verses || !isset($verses[$current_day])) {
        return '<p>Verse of the Day is unavailable. Please check again later.</p>';
    }

    // Get the verse for today
    $verse = $verses[$current_day];
    $reference = htmlspecialchars($verse['Reference']);
    $scripture = htmlspecialchars($verse['Scripture']);

    return "<div class='verse-of-the-day'>
                <h3>Verse of the Day</h3>
                <p><strong>$reference</strong>: $scripture</p>
            </div>";
}
add_shortcode('verse_of_the_day', 'verse_of_the_day_shortcode');

Verse of the Day

Romans 12:2: Do not conform to the pattern of this world, but be transformed by the renewing of your mind. Then you will be able to test and approve what God’s will is—his good, pleasing and perfect will.

Verse of the Day

Romans 12:2: Do not conform to the pattern of this world, but be transformed by the renewing of your mind. Then you will be able to test and approve what God’s will is—his good, pleasing and perfect will.