【WordPress】the_excerpt()の文字数を変更する

アーカイブページなど、記事の本文を省略表示する場合の文字数を変更する方法

下記のコードをfunctions.phpへ追記

function custom_excerpt_length( $length ) {
     return 50;	
}	
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

returnのあとの数字を変更することで文字数が変わる。

参考にさせていただいたサイト
https://thewppress.com/libraries/change-the-excerpt-length-and-excerpt-more/