Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Last active June 5, 2017 13:23
Show Gist options
  • Save ingozoell/ec81e8682c7b494431222003913f71c1 to your computer and use it in GitHub Desktop.
Save ingozoell/ec81e8682c7b494431222003913f71c1 to your computer and use it in GitHub Desktop.
WordPress get slug name
// Outside the loop:
<?php
$post_id = 11;
$post = get_post($post_id);
$slug = $post->post_name;
?>
global $post;
echo $post->post_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment