WordPressの抜粋文字数の変更

WordPressの抜粋文字列が少なすぎるので、以下の項目をfunctions.phpに追加しました。

function custom_excerpt_length( $length ) {
	return 260;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
ブックマーク パーマリンク.

コメントは受け付けていません。