Forums

[resolved] Get title for specific post (3 posts)

  1. mastermind
    Member
    Posted 3 years ago #

    I'd like to retrieve the title for a specific post by its ID, just as I can get any post's permalink with <?php get_permalink(id); ?>.

    How could I do this?

  2. petit
    Member
    Posted 3 years ago #

    How about
    <?php
    $post_id_7 = get_post(7);
    $title = $post_id_7->post_title;
    ?>

    Mentioned at http://codex.wordpress.org/Function_Reference/get_post

  3. mastermind
    Member
    Posted 3 years ago #

    Thanks, that's exactly what I needed.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags