• Resolved cheemin

    (@cheemin)


    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!

Viewing 4 replies - 1 through 4 (of 4 total)
  • it is good if I see your blog. You can look your theme options.

    Thread Starter cheemin

    (@cheemin)

    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 &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();
    ?>

    Thread Starter cheemin

    (@cheemin)

    Thanks a lot! The problem is resolved 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Want to show full content’ is closed to new replies.