Adjusting Excerpt Length
-
I seem to be unable to adjust the excerpt length. It is stuck at 20 words. I have adjusted the timeline-express settings page to reflect a much higher character count and unchecked “random length”.
I have even implemented the following code to my functions.php to try to overide WordPress’s default excerpt length:
function custom_excerpt_length( $length ) {
return 100;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );Nothing seems to work, what am I missing? How do I increase the excerpt length to more than 20 words?
Thanks,
Logan
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Adjusting Excerpt Length’ is closed to new replies.