Skip to content

Instantly share code, notes, and snippets.

@theperfectwill
Forked from davidpaulsson/wp-get_id_by_slug
Created September 6, 2016 11:48
Show Gist options
  • Save theperfectwill/29e44893ee754696e6948634765e2099 to your computer and use it in GitHub Desktop.
Save theperfectwill/29e44893ee754696e6948634765e2099 to your computer and use it in GitHub Desktop.
WordPress: Get page ID from slug
// Usage:
// get_id_by_slug('any-page-slug');
function get_id_by_slug($page_slug) {
$page = get_page_by_path($page_slug);
if ($page) {
return $page->ID;
} else {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment