Hi Guys,
I am totally new to Wordpress and thematic, but I am using the thematic framework on my blog. I have this code in my functions.php page in the child theme for my excerpts and managed to get thematic to only show post excerpts on the home page with this continue reading link. But I don't have to add an excerpt in the write post of the admin panel, it automatically creates the excerpt based on the content then adds the continue reading link.
Here is that code
function excerpt_ellipse($text) {
return str_replace('[...]', Continue Reading ..., $text);
}
add_filter('get_the_excerpt', 'excerpt_ellipse');
What I want to do now is have am image thumbnail appear in this excerpt. Does anybody know what I need to do. I have installed thumbnail-for-excerpts plugin but cannot get it to work whilst I have this function above running.