抜粋の省略記号と文字数を変更する


//抜粋の省略記号変更
function my_excerpt_more($more) {
  return '...';
}
add_filter('excerpt_more', 'my_excerpt_more');

//抜粋の文字数変更
function my_excerpt_length($length) {
	return 42;
}
add_filter('excerpt_length', 'my_excerpt_length', 999 );