WordPressで抜粋文字数を変更する croitre 2012年12月9日WordPress, ホームページ制作WordPressで抜粋する文字数を変更する方法記事の抜粋を表示するには、 <?php the_excerpt(); ?> ですが、110文字で変更できません。 任意の文字数の設定をする場合は、 <?php echo(mb_strimwidth(get_the_excerpt(), 0, 150, "..."));?> のように、指定してあげればOK。