Limit the excerpt with characters in wordpress Posted on May 24, 2017 by admin function new_excerpt_length($length) { return 150; } add_filter(‘excerpt_length’, ‘new_excerpt_length’);