Convert post name into post ID

Use get_page_by_title(). It works with any post type.

$post = get_page_by_title( $post_name, OBJECT, 'post' );
echo $post->ID;

Leave a Comment