views:

22

answers:

2

Hi,

How to bring the read more link at the end of the post in the home page of my blog?

Basically in my home page, it display all the content of the post, i would like to limit the characters to display

thanks

A: 

Use the "MORE" tag. Place it where you want the break to occur. It will add your "Read More" link.

Andy
+2  A: 

Well, if you have used the <!-- More --> functionality in your post, the content will be cut off on the home page where you put the tag.

  <?php the_content("Continue reading " . the_title('', '', false)); ?>

See the beginning of this article.

Chacha102