wordpressの日付英語表記でプラグインを導入したら、
[sourcecode language=”php”]<?php wp_get_archives(’type=monthly’); ?>[/sourcecode]
で表示されるサイドバーの月別アーカイブの表記が
2008年 December
とかなった!!
クライアントが、日付表記をコメントのとこ以外「20081226」みたいに
月とか/とか無しで表記して欲しいとかいうので、直すことに・・。
ここの表記はwp-includes/general-template.phpの767行目をいぢるしかなさそう。
めんどいけど、やるかーということで。
767行目あたり。(ver2.7のとき)
[sourcecode language=”php”]$text = sprintf(__(‘%1$s %2$d’), $wp_locale->get_month($arcresult->month), $arcresult->year);[/sourcecode]
を
[sourcecode language=”php”]$text = sprintf((‘%04d%02d’), $arcresult->year, $arcresult->month);[/sourcecode]
に書き換えて表示を
200812
に変更。
- Facebook GraphAPI v2.9でいいね・シェア数をPHPで取得して表示 - 2017年9月7日
- phpstormのFilewatcherでautoprefixerを使う方法 - 2017年1月19日
- Custom Field Templateを使用してのプレビューを実装 - 2016年1月14日
- WordPress:WooCommerceを使ってみて分かったこと - 2013年7月5日
- 誰得なプラグイン Ultimate Google Analytics改をひっそりと公開します - 2013年6月4日
- プラグイン『WooCommerce Fields for Japan』を公開しました - 2013年4月21日
- 公式 WordPress.orgプラグインディレクトリでのプラグイン公開のススメ - 2013年4月17日
- WordPress:WooCommerceを日本仕様へと日本語化 - 2013年4月15日
- webクリエイター パソコンを買う。 - 2013年3月16日
- WordPress:『続きを読む』read moreをpタグで囲む - 2013年3月5日
Pingback: WordPressの日付表示を英語表記にする方法:WPアップグレード後にやること | きにきじ
Pingback: WordPressカスタマイズ | DESIRERY
Pingback: 月別アーカイブの表記変更 / yuheijotaki.com
Pingback: 月別アーカイブの表記変更 / yuheijotaki.com