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?
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?
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
Thanks, that's exactly what I needed.
This topic has been closed to new replies.