Skip to content

Instantly share code, notes, and snippets.

@someguy9
Last active May 26, 2020 17:23
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 someguy9/297a21ee4d8ba1036fdf96bf9856d4df to your computer and use it in GitHub Desktop.
Save someguy9/297a21ee4d8ba1036fdf96bf9856d4df to your computer and use it in GitHub Desktop.
Get WordPress post ID by slug
<?php
$post_data = get_page_by_path('my-post-slug');
$post_id = $post_data->ID;
if(!empty($post_id)){
echo 'The post ID is: '.$post_id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment