Home > Tags > monthchunks

monthchunks

月別アーカイブリストを簡潔に変える monthchunks プラグインを WP2.8で使用する

WordPressを2.8日本語版にバージョンアップしたのですが、その際に、月別アーカイブリストを簡潔に変える monthchunks プラグインを有効にするために編集するファイルが変わったので、そのメモです。

2.71以前
wp-includes/widgets.php

<?php wp_get_archives("type=monthly&amp;show_post_count=$c"); ?>

  ↓

<?php
if(function_exists('monthchunks')) {
    monthchunks("descending", "numeric");
} else {
    wp_get_archives("type=monthly&amp;show_post_count=$c");
} 
?>

2.8
wp-includes/default-widgets.php

<?php wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c))); ?>

  ↓

<?php
if(function_exists('monthchunks')) {
    monthchunks("descending", "numeric");
} else {
    wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c)));
}
?>

monthchunks plugin for WordPress – Justinsomnia

monthchunks – わーどぷれすっ!

Home > Tags > monthchunks

QR Code

Net MOUNT - QR Code

Mail

Mail Address

UNIQLOCK
Meta
Get Adobe Flash playerPlugin by wpburn.com wordpress themes

Return to page top