wordpress:修改the_excerpt()函式的預設長度

要修改wordpress裡的the_excerpt()的預設長度,可以在functions.php裡面加入以下:

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

參考:

5 Easy Ways To Limit Post Excerpt Length In WordPress