Forums

[resolved] Display second post (order by date) (3 posts)

  1. klevismiho
    Member
    Posted 4 months ago #

    To display the latest post, I use this:
    WP_Query( array ( 'orderby' => 'date', 'order' => 'DESC', 'showposts'=>'1' ) );

    How can I get the second post? The third, and so on?

  2. alchymyth
    The Sweeper
    Posted 4 months ago #

    try to work with the 'offset' parameter:

    http://codex.wordpress.org/Class_Reference/WP_Query#Offset_Parameter

    (caveat: does not work together with pagination)

  3. klevismiho
    Member
    Posted 4 months ago #

    Yes exactly, thank you.

Reply

You must log in to post.

About this Topic