[Hueman] Related postsの日付をWordPressの設定と合わせる
このブログのテーマは「Hueman」 を使用しています。
関連記事の部分 (記事の下にある YOU MAY ALSO LIKE… のところ) の日付が日本では見慣れない順番でした。Wordpressの一般設定から日付フォーマットを変更したのですがどうも適用されないようです。いろいろと調べたのですが解決策がphpを直接直すみたいなのでメモとして残しておきます。
修正前 related-posts.php
<div class="post-meta group">
<p class="post-date"><?php the_time('j M, Y'); ?></p>
</div><!--/.post-meta-->
修正前 content-featured.php
<div class="post-meta group">
<p class="post-category"><?php the_category(' / '); ?></p>
<p class="post-date"><?php the_time('j M, Y'); ?></p>
</div><!--/.post-meta-->
修正前 content.php
<div class="post-meta group">
<p class="post-category"><?php the_category(' / '); ?></p>
<p class="post-date"><?php the_time('j M, Y'); ?></p>
</div><!--/.post-meta-->
修正後 related-posts.php
<div class="post-meta group"> <p class="post-date"><?php the_time(get_option( 'date_format' )); ?></p> </div><!--/.post-meta-->
修正後 content-featured.php
<div class="post-meta group">
<p class="post-category"><?php the_category(' / '); ?></p>
<p class="post-date"><?php the_time(get_option( 'date_format' )); ?></p>
</div><!--/.post-meta-->
修正後 content.php
<div class="post-meta group">
<p class="post-category"><?php the_category(' / '); ?></p>
<p class="post-date"><?php the_time(get_option( 'date_format' )); ?></p>
</div><!--/.post-meta-->
どうも日付表示の部分で直接フォーマットを指定している箇所があるみたいです。
‘j M, Y’
を
get_option( ‘date_format’ )
に書き換えました。
今のところ問題なさそうです。ただ子テーマを作成し、そちらを修正するのがWordpressの流儀のようですが、とりあえずの処置としておきます。
![[Unity] 雪に残る足跡表現とパーティクルを使った積雪表現](http://kikikiroku.session.jp/wp-content/uploads/wordpress-popular-posts/1355-featured-120x100.gif)
![[Unity] スクリプトからMesh、GameObjectを作成しPrefabへ登録する](http://kikikiroku.session.jp/wp-content/uploads/wordpress-popular-posts/1051-featured-120x100.png)

![[Unity] FF4、FF5のダメージ表示アニメーションをUnityで再現する](http://kikikiroku.session.jp/wp-content/uploads/wordpress-popular-posts/768-featured-120x100.png)
![[Unity] 新UGUIでゲーム内にモーダルダイアログ(ポーズメニュー)を表示する](http://kikikiroku.session.jp/wp-content/uploads/wordpress-popular-posts/883-featured-120x100.png)
![[Unity] FF10エンカウントエフェクトを再現する [画面バラバラ]](http://kikikiroku.session.jp/wp-content/uploads/wordpress-popular-posts/1074-featured-120x100.png)

![[Unity] 画面をキャプチャーしてPNGファイルへ出力する [Not RenderTexture]](http://kikikiroku.session.jp/wp-content/uploads/wordpress-popular-posts/1062-featured-120x100.png)


[…] [Hueman] Related postsの日付をWordPressの設定と合わせる […]