Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active March 2, 2020 14:49
Show Gist options
  • Save jrobinsonc/8ff3ad1f686a09d39cb6 to your computer and use it in GitHub Desktop.
Save jrobinsonc/8ff3ad1f686a09d39cb6 to your computer and use it in GitHub Desktop.
Wordpress helper: Get slug
<?php
function get_the_slug()
{
global $post;
return is_single() || is_page()? $post->post_name : '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment