functions.phpに記載
以下のコードをテーマのfunctions.phpにコピーします。
function twpp_change_excerpt_length( $length ) { return 50; } add_filter( 'excerpt_length', 'twpp_change_excerpt_length', 999 );
returnの数字を変更するとデフォルトで抜粋される文字数の変更ができます。
抜粋の後に表示する文字列
抜粋の後に表示したい文字列がある場合は、以下のように記述します。
例えば「もっと読む」「more」など表示することができます。
<?php echo mb_substr( get_the_excerpt(), 0, 50 ) . '[...]'; ?>