Little.ws

サイドバー・アーカイブの日付フォーマット変更

Written by chibi. Posted in wordpress

Tagged: ,

サイドバー・アーカイブの日付フォーマット変更

Published on 2008年12月26日 with No Comments

wordpressの日付英語表記でプラグインを導入したら、

<?php wp_get_archives(’type=monthly’); ?>

で表示されるサイドバーの月別アーカイブの表記が
2008年 December
とかなった!!
クライアントが、日付表記をコメントのとこ以外「20081226」みたいに
月とか/とか無しで表記して欲しいとかいうので、直すことに・・。
ここの表記はwp-includes/general-template.phpの767行目をいぢるしかなさそう。
めんどいけど、やるかーということで。
767行目あたり。(ver2.7のとき)

$text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year);

$text = sprintf(('%04d%02d'), $arcresult->year, $arcresult->month);

に書き換えて表示を
200812
に変更。

Share this

No Comments

There are currently No Comments on サイドバー・アーカイブの日付フォーマット変更. Perhaps you would like to add one of your own?

Trackbacks & Pingbacks

  1. WordPressの日付表示を英語表記にする方法:WPアップグレード後にやること | きにきじ
  2. WordPressカスタマイズ | DESIRERY

Leave a Comment