blog
copyright ©
creamu Inc. All Rights Reserved.
art direction & design: Kunitaka Kawashimo
code, interaction & photography: creamu Inc.
category: Technology

WordPressで曜日を英語表記にする方法

Pocket

WordPressで日付を表示する場合はthe_dateやthe_timeを使いますが、 曜日の表記が日本語になってしまいます。 曜日を英語表記にしたい場合は、以下のようにします。 <?php echo get_post_time(‘Y.m.d D’); ?> 出力: 2013.08.26 Mon ref. <?php the_time(‘Y.m.d D’); ?> 出力: 2013.08.26 月 <?php the_date(‘Y.m.d D’); ?> 出力: 2013.08.26 月 ちなみに、「the_date」は同じ日付の投稿が2つ以上ある場合、 1つ目の記事にしか表示されない仕様となっています。 – version: WordPress 3.6