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?