I am trying to replace the annoying [...] auto-appended at the end of excerpts with a 'read more' link that clicks through to the full post. This bit of code is floating around in various forums that seems to work for others:
function excerpt_ellipse($text) {
return str_replace('[...]', ' <a href="'.get_permalink().'">
Read more ...</a>', $text); }
add_filter('the_excerpt', 'excerpt_ellipse');
Seems simple enough, but when I drop it in my child theme's functions.php, my excerpts stay the same, still with the [...]
Is there something about how Thematic handles excerpts differently that would prevent the above from working? Is there something else I need to filter that I'm not aware of?
Thanks much!