記事の抜粋を表示するには「the_excerpt()」というテンプレートタグを使用する
「child」ホルダー配下の「functions.php」に以下の設定を追加する
//長さを調整用コード
function new_excerpt_mblength($length) {
return 80;
}
add_filter(‘excerpt_mblength’, ‘new_excerpt_mblength’);
//
初期値は110がセットされているので、returnする長さを自由に変更する
コメントを残す