投稿画面で入力したデータの内容を表示する時に、
「the_excerpt();」や「the_content();」を利用するけど、その表示文字数を変更する場合の手順。
function.phpに以下を記述
[php]
function new_excerpt_mblength($length) {
return 20;
}
add_filter(‘excerpt_mblength’, ‘new_excerpt_mblength’);
[/php]

これだけ!!
これで効かない場合、
wp-content\plugins\wp-multibyte-patch\wp-multibyte-patch.php
にexcerpt_mblengthが存在するかを確認。
バージョンによって無い可能性あり。