WordPress 自定日期格式

在套用了某一個主題後,發現內容頁面日期格式是 YYYY-MM-DD, 但在首頁,卻不一致:

首頁的 php source code:

<?php echo get_the_date('F j, Y'); ?>

修改為

<?php echo get_the_date('Y-m-d'); ?>

常見的自訂日期的格式範例:
https://www.php.net/manual/en/function.date.php

<?php
// Assuming today is March 10th, 2001, 5:16:18 pm, and that we are in the
// Mountain Standard Time (MST) Time Zone

$today = date("F j, Y, g:i a"); // March 10, 2001, 5:16 pm
$today = date("m.d.y"); // 03.10.01
$today = date("j, n, Y"); // 10, 3, 2001
$today = date("Ymd"); // 20010310
$today = date('h-i-s, j-m-y, it is w Day'); // 05-16-18, 10-03-01, 1631 1618 6 Satpm01
$today = date('\i\t \i\s \t\h\e jS \d\a\y.'); // it is the 10th day.
$today = date("D M j G:i:s T Y"); // Sat Mar 10 17:16:18 MST 2001
$today = date('H:m:s \m \i\s\ \m\o\n\t\h'); // 17:03:18 m is month
$today = date("H:i:s"); // 17:16:18
$today = date("Y-m-d H:i:s"); // 2001-03-10 17:16:18 (the MySQL DATETIME format)
?>


  • d: 前方會有0,例如01,02這樣
  • j: 不會有0,例如1,2這樣

星期

  • D: 簡稱,例如:sun,wed
  • l: 完整的英文,例如:Sunday,Wednesday
  • N: 數字1-7來顯示,星期一會是1,星期二會是2
  • w: 數字0-6來顯示,星期天會是0,星期一會是1

  • M: 簡稱,例如:Jan,Dec
  • F: 完整的英文,例如:January ,December
  • m: 前方會有0,例如01,02
  • n:不會有0,例如1,2這樣

  • Y: 4位數,例如1999, 2020這樣
  • y: 2位數,例如1999就會是99,2024就會是24

其他

S: 英文序數尾碼,在j之後使用 st、 nd、rd 或 th

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *