由於本站已嵌入「手寫日誌」功能,請善加利用
在function.php中加入
function get_tegalog_last_updated() {
$rss_content = @file_get_contents('※目錄');
if (!$rss_content) return date('Y年n月j日'); // ★返回今日日期
$rss_content = mb_convert_encoding($rss_content, 'UTF-8', 'auto');
$rss = simplexml_load_string($rss_content);
$latest_item = $rss->channel->item[0] ?? null;
if ($latest_item && isset($latest_item->pubDate)) {
return date('Y年n月j日', strtotime((string)$latest_item->pubDate));
}
return date('Y年n月j日'); // ★返回今日日期
}
index.php中
<div class="last-updated">
<p>最後更新日期:<?php echo get_tegalog_last_updated(); ?></p>
</div>
由於這是CGI程式,處理起來相當簡單
但像Instagram這類平台,使用外掛程式可能更為簡便。
