LoginSignup
0
0

More than 1 year has passed since last update.

WordPressで年・月・日を分けて出力する方法

Posted at

よくある記事の時間表示方法としては、以下の書き方。

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

年・月・日を分けて出力する方法

<?php
  $post_year = get_the_date('Y');
  $post_month = get_the_date('m');
  $post_day = get_the_date('d');
?>
<?php echo $post_year ?><?php echo $post_month ?><?php echo $post_day ?>

d:先頭にゼロがついた日。01 – 31
j:先頭にゼロがつかない日。1 – 31
m:先頭にゼロがついた月。01 – 12
n:先頭にゼロがつかない月。1 – 12
F:フルスペルの月。日本語環境下では1月 – 12月、英語環境下ではJanuary – Decemberと表示される
Y:西暦。たとえば2018など

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0