I just placed this in my functions.php (I'm using Wordpress 3.0.4):
function new_excerpt_more($more) {
global $post;
return '<a href="'. get_permalink($post->ID) . '">Read the Rest...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
But my post is still displaying … Continue reading
Any suggestions?