[WordPress]functions.phpでthe_excerpt()の表示文字数を変更

WordPress
スポンサーリンク

functions.php

抜粋文字数を20文字に変更

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

コメント

タイトルとURLをコピーしました