Forums

[resolved] How can i show only from the second story? (7 posts)

  1. augustomallmann
    Member
    Posted 1 year ago #

    hi: D
    I wonder how do I show only from the second story.
    Example:
    I have 10 stories. I want to show only from the second post. how can i do this?

    i dont have a good english, but i think u undertand :D

  2. augustomallmann
    Member
    Posted 1 year ago #

    i will explain better:
    How can i skip the firt post in the homepage?

  3. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    Try adding:

    <?php global $wp_query;
    query_posts(
        array_merge(
            array('offset' => 1),
            $wp_query->query
        )
    );?>

    just before the start of the Loop in your theme's index.php template file.

  4. augustomallmann
    Member
    Posted 1 year ago #

    OMG!!!!!!! thank u very much!!!!

    one more doubt XD
    how can i show only the first post?

  5. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    <?php query_posts('posts_per_page=');?> should do it but be careful about using both of these queries in the same template. You'll either need to use <?php wp_reset_query();?> between the two queries. Or use get_posts instead of query_posts for the single post query.

  6. augustomallmann
    Member
    Posted 1 year ago #

    thank u :D

  7. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    You're welcome. :-)

Topic Closed

This topic has been closed to new replies.

About this Topic