web,direction,planning,graphicdesign

2011年9月2日金曜日

WordPress the_excerptで文字数・文末の変更

wp-content/plugins/wp-multibyte-patchの中のwpmp-config-sample.phpをwpmp-config.phpにリネーム。
$wpmp_conf['excerpt_mblength'] = 110;を任意に変更。

function.php

文字数変更
function new_excerpt_mblength($length) {
return 20;
}
add_filter('excerpt_mblength', 'new_excerpt_mblength');

文末変更

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

0 件のコメント:

フォロワー