How to customize the read more tag?
You can customize the Read More tag from your themes template tags. In default theme, it is like this:
Read the rest of this entry…
This can be customized using various methods.
By design, the_content() tag includes a parameter for formatting the <!--more--> content and look, which creates a link to “continue reading” the full post.
If you want to change the words from more…. to something else, just type in the new words into the tag:
<?php the_content('Read on...'); ?>You can also make it look like this:
<?php the_content('» » » »'); ?>
Popularity: 4%
