記事本文を抜粋表示する文字数の変更

記事本文を抜粋表示する文字数の変更

投稿サムネイルに表示される本文の長さを変更します。
function.php 内で excerpt_length の文字を検索すると、
これに関する記述があるはず・・・

このテーマでは、こんな記述があった。
この数値を変更しました。77文字表示されるように変更しました。

add_filter( 'excerpt_more', 'portfolio_excerpt_more', 999 );

if(!function_exists('portfolio_custom_excerpt_length')) {
	function portfolio_custom_excerpt_length( $length ) {
		return get_theme_mod('portfolio_excerpt_length', 77);
	}
}

↓ 参考にさせていただきました。ありがとうございます。
http://whitebear-seo.com/wordpress-excerpt-change/