• Google+
  • Twitter

  • Home
  • iPhone&iPad
  • Apple
  • Application
  • Tech&Tips
  • Misc

Home » WordPress » WordPress 月表示の変更

WordPress 月表示の変更



Posted by: かむ  Posted date:  4月 9, 2010  |  No comment


  • ツイート
  • hatena

iPhone OS 4.0が発表されましたが
意表を突いてWordpressネタ。


日本語版のWPだと、月表示のタグで

the_time('M');

としても、設定で変えようが何しようが4月なら「4月」 となってしまう。
4月なら Apr と表示したかったのでちょいと修正。

wp-includes/locale.php 155行目付近(ver2.9のlocale.phpの場合)

$this->month_abbrev[__('January')] = __('Jan_January_abbreviation');
$this->month_abbrev[__('February')] = __('Feb_February_abbreviation');
$this->month_abbrev[__('March')] = __('Mar_March_abbreviation');
$this->month_abbrev[__('April')] = __('Apr_April_abbreviation');
$this->month_abbrev[__('May')] = __('May_May_abbreviation');
$this->month_abbrev[__('June')] = __('Jun_June_abbreviation');
$this->month_abbrev[__('July')] = __('Jul_July_abbreviation');
$this->month_abbrev[__('August')] = __('Aug_August_abbreviation');
$this->month_abbrev[__('September')] = __('Sep_September_abbreviation');
$this->month_abbrev[__('October')] = __('Oct_October_abbreviation');
$this->month_abbrev[__('November')] = __('Nov_November_abbreviation');
$this->month_abbrev[__('December')] = __('Dec_December_abbreviation');

    を

$this->month_abbrev[__('January')] = __('Jan');
$this->month_abbrev[__('February')] = __('Feb');
$this->month_abbrev[__('March')] = __('Mar');
$this->month_abbrev[__('April')] = __('Apr');
$this->month_abbrev[__('May')] = __('May');
$this->month_abbrev[__('June')] = __('Jun');
$this->month_abbrev[__('July')] = __('Jul');
$this->month_abbrev[__('August')] = __('Aug');
$this->month_abbrev[__('September')] = __('Sep');
$this->month_abbrev[__('October')] = __('Oct');
$this->month_abbrev[__('November')] = __('Nov');
$this->month_abbrev[__('December')] = __('Dec');

に変更。

以上覚え書き。


  


関連エントリ
  1. WordPress 改行処理
  2. wordpress + twitter tools + P2
  3. iPhone + WordPress + twitter





Leave a Comment





  Cancel Reply

« apacheの接続数
iPadの発売日はいつだ »

  • Recent Posts



    • Apple-Style7周年記念オフとスロット抽選ロボのドタバタ
      May 21 2012 - Read more
    • 自転車はサドルが圧倒的に格好いい。
      May 16 2012 - Read more
    • jQueryでカラーをアニメーションさせる
      May 13 2012 - Read more
    • パワサポ フラットバンパーセット for iPhone 4S/4を試してみた。
      April 29 2012 - Read more
    • Su-Penのペン先を木製のエクステンダーで使う。
      April 27 2012 - Read more
    • Google+の新UIに対応した画像を小さくするChrome拡張 【PetitPhoto+】
      April 22 2012 - Read more
    • jQueryで文字コードがUTF-8以外のサイトでPHP連携する
      April 11 2012 - Read more
  • Comment

    • Apple-Style7周年記念オフとスロット抽選ロボのドタバタ に みーけ より
    • Apple-Style7周年記念オフとスロット抽選ロボのドタバタ に Metal より
    • WordPress 改行プラグイン に WordPressで記事の改行はどうする?(brBrbr)[WP2.9.2] | MA3エンヂニヤリング より
    • WordPress 改行プラグイン に プラグイン について » 地球儀をつくる より
    • WordPress 改行プラグイン に 改行プラグイン » 地球儀をつくる より
  • タグ

    ケース スタイラス バンパー プラグイン モバイルルータ レビュー 保護フィルム 絵文字 Apple Appleグッズ Apple本社 au Chrome Chrome拡張 Cookie EasyFind GCView Google+ iMessage iPhone iPod jQuery Mac safari Su-Pen Wordpress


  • Comments

    • Apple-Style7周年記念オフとスロット抽選ロボのドタバタ に みーけ より
    • Apple-Style7周年記念オフとスロット抽選ロボのドタバタ に Metal より
    • WordPress 改行プラグイン に WordPressで記事の改行はどうする?(brBrbr)[WP2.9.2] | MA3エンヂニヤリング より
    • WordPress 改行プラグイン に プラグイン について » 地球儀をつくる より
    • WordPress 改行プラグイン に 改行プラグイン » 地球儀をつくる より
  • Category

    • Apple
    • Apple Goods
    • Application
    • iPhone&iPad
    • jQuery
    • Misc
    • Tech&Tips
    • WordPress
  • Search

  • Archive


Writen by Cam