X

Custom excerpt length for WordPress site

You can set the limit to WordPress excerpt by adding following code to your functions.php file.It will overwrite the default limit with custom value defined in function.

 
<?php
 
	function custom_excerpt_length($length) {
		return 120;
	}
	add_filter('excerpt_length', 'custom_excerpt_length');
 
?>