Last active
February 13, 2016 19:50
-
-
Save twentyfortysix/50977378dc3b74773419 to your computer and use it in GitHub Desktop.
WP - Get ID by title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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