【WP】timeタグを使って投稿日や更新日を表示する方法
WordPressでtimeタグを使って投稿日や更新日を表示する方法についてまとめました。
投稿日を表示する
datetime属性もしくは<time></time>内に既定の書式で取得し表示ます
1 2 3 |
<time datetime="<?php the_time('Y-m-d'); ?>"><?php the_time('Y/m/d'); ?></time> <time><?php the_time('Y-m-d'); ?></time> |
間違った書き方
1 |
<time><?php the_time('Y/m/d'); ?></time> |
datetime属性を省略する場合は、<time>~</time>の間を独自の形式で記述してはいけません。
更新日を表示する
1 2 3 |
<time datetime="<?php the_modified_time('Y-m-d'); ?>"><?php the_modified_time('Y/m/d'); ?></time> <time><?php the_modified_time('Y-m-d'); ?></time> |
間違った書き方
1 |
<time><?php the_modified_time('Y/m/d'); ?></time> |
datetime属性を省略する場合は、<time>~</time>の間を独自の形式で記述してはいけません。