title

Change your excerpt length

 

Change your excerpt length

11 Mai 2013, Posted by antoine in

The tweak below will change your excerpt length, which you can just add the following lines of code into your functions.php file, with the value 75 as the excerpt length.

add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($len) { return 75; }