Add character limit to excerpt filter
-
Hello,
I’m having difficulties adding a character limited for an excerpt.
I want to limit the character length of an excerpt that appears on a page template while keeping the default length (I believe its 55 characters) on other pages.I’ve used:
function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
But this doesn’t seem to work.
Any help much appreciated.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add character limit to excerpt filter’ is closed to new replies.