I'm going to jump on this thread as opposed to creating a new one.
I'm trying to add the 'read more' functionality to my WP 2.5 site, but when I change this:
<?php the_content(''.__('Read More <span class="meta-nav">»</span>', 'sandbox').''); ?>
to this:
<?php the_excerpt(''.__('Read More <span class="meta-nav">»</span>', 'sandbox').''); ?>
the post ends with [...] instead of "Read More". No matter what I change inside the_excerpt(), the [...] never changes. I've tried
the_excerpt( 'Read More' , 'TRUE' )
but that doesn't help either. Is it sandbox that is screwing me up? I can't figure out where [...] is coming from.
I'm trying to set up an automatic marker instead of using the more link in the posting section for the sake of keeping it simple for content posters.
Where can I tweak these settings? I think I've exhausted the WP documentation on this.