wordpress プラグインの「WP Multibyte Patch」デフォルトの抜粋の文字数の変更

2013年6月9日

プラグインの「WP Multibyte Patch」を有効化して「the_excerpt()」をテンプレートに記述すると、デフォルトで本文から110文字を抽出して抜粋文を自動生成して出力する。

デフォルトの抜粋記事のテキスト量を変更するには functions.php に以下を記述する。

function new_excerpt_mblength($length) {
    return 60;
}
add_filter('excerpt_mblength', 'new_excerpt_mblength');

本文から抜粋されたテキストの最後の文字列を「[…]」から「・・・」に変更するには functions.php に以下を記述する。

function new_excerpt_more($more) {
    return '・・・';
}
add_filter('excerpt_more', 'new_excerpt_more');