Forums

[resolved] Want to show full content (5 posts)

  1. 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!

  2. bestofblogger
    Member
    Posted 2 years ago #

    it is good if I see your blog. You can look your theme options.

  3. 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.

  4. Samuel B
    moderator
    Posted 2 years ago #

    your theme's index.php has this
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    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();
    ?>
  5. cheemin
    Member
    Posted 2 years ago #

    Thanks a lot! The problem is resolved :)

Topic Closed

This topic has been closed to new replies.

About this Topic