• Resolved marcelvb001

    (@marcelvb001)


    Hi,

    For a widget i’m trying to find out how i can get the ID tag of the most newest post.

    Now it’s like this: get_post($post->ID);

    But i selects all the posts and i just want to have the newest post.

Viewing 3 replies - 1 through 3 (of 3 total)
  • esmi

    (@esmi)

    There might be a more elegant way of doing it but…

    <?php
    $last = wp_get_recent_posts( '1');
    $last_id = $last['0']['ID'];
    ?>
    Thread Starter marcelvb001

    (@marcelvb001)

    Thanks it did just the thing !

    esmi, is there a way to do this for each author and then sort the authors by their latest post?

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

The topic ‘get latest post id’ is closed to new replies.