Here is the line of code that I use to change the default length (55 words) of excerpts in WordPress. Copy and paste this snippet into your functions.php file: function new_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'new_excerpt_length'); Simply change the … Continue reading
↧