http://www.redprimary.com/index.php/2007/05/
Have a look. Notice the [...] at the end of the article? I want to change that to a "...click for more info" link. How do I do that?
Thanks
http://www.redprimary.com/index.php/2007/05/
Have a look. Notice the [...] at the end of the article? I want to change that to a "...click for more info" link. How do I do that?
Thanks
Reading the documentation?
http://codex.wordpress.org/Template_Tags/the_content
http://codex.wordpress.org/Template_Tags/the_excerpt
In your archive.php file look for a line that says this:
<div class="entry">
<?php the_excerpt() ?>
</div>
and change it to this:
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
This will display the full post in your archive page. If you choose to, you can then use the <!--more--> tag to cut your article off where you want it.
This topic has been closed to new replies.