Limit excerpt length
-
Hi there. I need to limit the length of characters in my excerpts on my front page.
I am echoing them like this:<?php echo $post->post_excerpt; ?>
In my other queries I am limiting the title output this way:<?php if (strlen($post->post_title) > 20) { echo substr(the_title($before = '', $after = '', FALSE), 0, 20) . '...'; } else { the_title(); } ?>
But it won’t work with my excerpts?
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Limit excerpt length’ is closed to new replies.