function get_cached_youtube_videos() { $cache_file = get_template_directory() . '/yt-cache.json'; // 🔥 Cache 10 minutes if (file_exists($cache_file) && (time() - filemtime($cache_file)) < 600) { return json_decode(file_get_contents($cache_file), true); } $rss = "https://www.youtube.com/feeds/videos.xml?channel_id=UCPl2JKCzGWp39DBFVzOHaoQ"; $xml = @simplexml_load_file($rss); $videos = []; if ($xml) { foreach ($xml->entry as $entry) { $videos[] = [ 'title' => (string)$entry->title, 'id' => (string)$entry->children('yt', true)->videoId ]; } } // Save cache file_put_contents($cache_file, json_encode($videos)); return $videos; } Home - Channel Durjoy

Home

সারা বাংলা

অনুসন্ধান

দক্ষিণ বঙ্গ

সম্পাদকীয়

কবি ও কবিতা

খেলার সংবাদ

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to Top