更新我使用一些PHP顯示最後一次博客文章是使用get_the_time
和get_the_modified_time
功能WordPress的更新。但是,我不能得到的最後修改時間到段落內嵌顯示。顯示最後日期後在WordPress的
<?php
$x = get_the_time('U');
$m = get_the_modified_time('U');
if ($m != $x) {
$t = the_modified_time('F d, Y');
echo "<p class=\"lastupdated\">Updated on $t </p>";
}
?>
這裏的結果的截圖: