Skip to content

Instantly share code, notes, and snippets.

@josecarlospsh
Last active July 29, 2020 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josecarlospsh/073dbc89e5ce9c708c14899284869829 to your computer and use it in GitHub Desktop.
Save josecarlospsh/073dbc89e5ce9c708c14899284869829 to your computer and use it in GitHub Desktop.
How to get page ID by slug in Wordpress
<?php
function get_page_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