Skip to content

Instantly share code, notes, and snippets.

@twentyfortysix
Last active February 13, 2016 19:50
Show Gist options
  • Save twentyfortysix/50977378dc3b74773419 to your computer and use it in GitHub Desktop.
Save twentyfortysix/50977378dc3b74773419 to your computer and use it in GitHub Desktop.
WP - Get ID by title
function get_id_by_title($title){
global $wpdb;
$p = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_title = $title");
return $p;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment