2017-01-28 80 views
0

試圖展示出版日期,如果從公佈日期不同的更新日期,我在WordPress模板嘗試這種代碼:顯示更新的日期只有從公佈日期不同的WordPress的

<p class="card-text">Published <?php the_date();?>.&nbsp; 
<?php 
    if (the_date('U') !== the_modified_date('U')) { 
     echo "Updated " . the_modified_date('F j, Y'); 
    } 
    ?> 

但是我做網獲得任何輸出。可能很簡單,但我仍然只獲得很長的數字作爲輸出。

回答

1

您應該使用get_the_dateget_the_modified_date,因爲它們返回值而不是打印出來。

if (get_the_date('U') !== get_the_modified_date('U')) { 
    echo "Updated " . get_the_modified_date('F j, Y'); 
}