Get wordpress post by post title (ok)

https://stackoverflow.com/questions/21040938/get-wordpress-post-by-post-title/21041093

$posttitle = 'About';
$postid = $wpdb->get_var( "SELECT ID FROM $wpdb->posts WHERE post_title = '" . $posttitle . "'" );
echo $postid;

Last updated