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
Matthew 5:16: Let your light so shine before men, that they may see your good works and glorify your Father in heaven.
Verse of the Day
Matthew 5:16: Let your light so shine before men, that they may see your good works and glorify your Father in heaven.