Hi -- I've been customizing Thematic for a site and am stuck with a very simple thing -- trying to show excepts on the home page instead of the full posts.
In content-extensions.php, I've modified thematic_content to show excerpts instead of full. But instead of getting the default "Read more" behavior, I get this. '[...]'
I would prefer custom text with a live link, something that is pretty straightforward outside Thematic.
I've tried adding the following text into functions.php as per another post, but it doesn't do anything...
function my_moretext() {
return "Continue reading...";
}
add_filter('more_text', 'my_moretext');
Can anyone offer help please?