Limit excerpt length by characters
-
I’m using the following excerpt filter but it limits the post length by words. How can I put a limit on characters? Like Twitter. I can;t find any documentation in Codex.
function new_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'new_excerpt_length');
- The topic ‘Limit excerpt length by characters’ is closed to new replies.