Skip to content

Instantly share code, notes, and snippets.

@theodorocaliari
Created August 16, 2013 12:38
Show Gist options
  • Save theodorocaliari/6249535 to your computer and use it in GitHub Desktop.
Save theodorocaliari/6249535 to your computer and use it in GitHub Desktop.
Get page/post slug in wordpress
<?php
/*paste this in functions.php*/
function the_slug() {
global $post;
$slug = $post->post_name;
return $slug;
}
/* --- */
/*call your slug in your page*/
/*paste this in your page*/
echo the_slug();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment