I have an issue with a custom WordPress theme I'm developing. It's a bit convoluted, but essentially, what I need to do is get a Post Id by it's Post Title. In pseudo-code it would ideally be something like:

title = "foo";
post_id = get_post_id_where_title_is(title);

The title mentioned is a static reference not being pulled in from WordPress, it's already present on the page.

Thanks in advance.

link|improve this question

70% accept rate
feedback

2 Answers

Just a quick note for anyone who stumbles across this:
get_page_by_title() can now handle any post type.
The $post_type parameter has been added in WP 3.0.

link|improve this answer
3  
+1 always better to use a core function than some arbitrary mySQL query. – Tom Auger Dec 15 '11 at 21:19
feedback
up vote 11 down vote accepted

Found a solution if anyone else struggles with this. Only posted the question out of desperation after 4 hours testing/Googling!

function get_post_by_title($page_title, $output = OBJECT) {
    global $wpdb;
        $post = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_title = %s AND post_type='post'", $page_title ));
        if ( $post )
            return get_post($post, $output);

    return null;
}

Found at: http://sudarmuthu.com/blog/2009/09/18/retrieving-posts-and-pages-based-on-title-in-wordpress.html

link|improve this answer
Just put that function in your functions.php file. – Littlejon Oct 8 '09 at 22:03
2  
Note that you may wish to change post_type to 'page' if you want to get the id for a page. You can also omit the post_type from the SQL where clause to search all revisions, pages, and posts, etc. (All types in other words.) – American Yak Jul 4 '10 at 4:54
I suspect this could return draft/trashed versions, since it doesn't have the criteria status='published'.... – cale_b May 21 at 20:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.