Skip to content

Instantly share code, notes, and snippets.

@prayas-sapkota
Forked from keithics/gist:5398349
Created August 29, 2014 10:29
Show Gist options
  • Save prayas-sapkota/1773a1a16b12f788e3d9 to your computer and use it in GitHub Desktop.
Save prayas-sapkota/1773a1a16b12f788e3d9 to your computer and use it in GitHub Desktop.
function get_post_by_slug($post_name) {
global $wpdb;
$post = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_name = %s", $post_name));
return $post ? get_post($post) : NULL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment