Regarding The WP theme editor (the_content)

NemoTheOne

Power Member
Joined
May 18, 2009
Messages
732
Reaction score
245
I would like, on my page, to show just excerpts, then when users click on the blog entry, obviously they would come to the full article. So I've changed in the in the main index template php file through the theme editor the part where it says

Code:
the_content

to

Code:
the_excerpt

However when doing this, when users click on the story, they are still seeing just AN EXCERPT and that READ MORE link! In fact, clicking on the READ MORE link sends them to the excerpt!!!!

What could be wrong here? How can I fix?
 
In the next line add the following code.
Code:
<?php the_content(__('Read more'));?>
 
PHP:
<?php the_content(__('Read more'));?>

must be

PHP:
<?php the_excerpt(__('Read more'));?>
 
Back
Top