Skip to content

Instantly share code, notes, and snippets.

@caralgar
Created September 29, 2015 08:35
Show Gist options
  • Save caralgar/db2d0676f9a5c55d1494 to your computer and use it in GitHub Desktop.
Save caralgar/db2d0676f9a5c55d1494 to your computer and use it in GitHub Desktop.
Get Slug for WordPress page
<?php
$post = get_post($post_id);
$slug = $post->post_name;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment