0
試圖展示出版日期,如果從公佈日期不同的更新日期,我在WordPress模板嘗試這種代碼:顯示更新的日期只有從公佈日期不同的WordPress的
<p class="card-text">Published <?php the_date();?>.
<?php
if (the_date('U') !== the_modified_date('U')) {
echo "Updated " . the_modified_date('F j, Y');
}
?>
但是我做網獲得任何輸出。可能很簡單,但我仍然只獲得很長的數字作爲輸出。