Home > Tags > monthchunks
monthchunks
月別アーカイブリストを簡潔に変える monthchunks プラグインを WP2.8で使用する
- 2009-06-14 (日)
- WordPress
WordPressを2.8日本語版にバージョンアップしたのですが、その際に、月別アーカイブリストを簡潔に変える monthchunks プラグインを有効にするために編集するファイルが変わったので、そのメモです。
2.71以前
wp-includes/widgets.php
wp_get_archives("type=monthly&show_post_count=$c");
↓
if(function_exists('monthchunks')) { monthchunks("descending", "numeric"); } else { wp_get_archives("type=monthly&show_post_count=$c"); }
2.8
wp-includes/default-widgets.php
wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c)));
↓
if(function_exists('monthchunks')) { monthchunks("descending", "numeric"); } else { wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c))); }
- Comments: 2
- Trackbacks: 1
Home > Tags > monthchunks