cheemin
Member
Posted 2 years ago #
Hi there, I'm new with wordpress.
I had 2 posts in my blog. At the website, they only show the full content of the second post but for the first post I need to click "read the rest of entry" to view the full post. I wonder why I can't show the full content of my posts. I want to show the full content of all my posts in the home page. How can I do that? Is the problem relate to the theme I've selected?
Thanks!
it is good if I see your blog. You can look your theme options.
cheemin
Member
Posted 2 years ago #
Hi there. Thanks alot for the reply.
This is my blog. cheemin.com
the theme I'm using is Up_Down_Cloud.
your theme's index.php has this
<?php the_content('Read the rest of this entry »'); ?>
so if a story is not more than like 255 words you will get whole post - if more you get the "read more"
if you want the whole story all the time
change to
<?php
global $more; // Declare global $more (before the loop).
$more = 1; // Set (inside the loop) to display all content, including text below more.
the_content();
?>
cheemin
Member
Posted 2 years ago #
Thanks a lot! The problem is resolved :)