Setting the Excerpt’s Word Length in WordPress

<?php function new_excerpt_length($length) { return 150; } add_filter('excerpt_length', 'new_excerpt_length');
The standard excerpt is exactly 55 words long. That can be overwritten using this snippet.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.