Skip to content

Instantly share code, notes, and snippets.

@nandomoreirame
Created August 19, 2019 13:23
Show Gist options
  • Save nandomoreirame/2367fd31954429318fe395e087d37d39 to your computer and use it in GitHub Desktop.
Save nandomoreirame/2367fd31954429318fe395e087d37d39 to your computer and use it in GitHub Desktop.
Function get page ID by slug
<?php
function get_page_id_by_slug($page_slug) {
$page = get_page_by_path($page_slug);
if ($page) {
return $page->ID;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment