Hi, please help me with this one.
I have found the following code to shorten the excerpts on home page; but if a post has a thumb, the thumb does not show up on home page excerpts.
Please someone tell me how I can make the thumbs show up on the following code. What code should I add, and where?
//Shorten the Posts on Home Page and ADD Read More Link
function childtheme_content($content) {
if (is_home() || is_front_page()) {
$content= 'excerpt';
}
return $content;
}
add_filter('thematic_content', 'childtheme_content');
function excerpt_ellipse($text) {
return str_replace('[...]', '
<a href="'.get_permalink().'">Read more</a>', $text);
}
add_filter('get_the_excerpt', 'excerpt_ellipse');
function new_excerpt_length($length) {
return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
Thank you a lot.