Last active
March 2, 2020 14:49
-
-
Save jrobinsonc/8ff3ad1f686a09d39cb6 to your computer and use it in GitHub Desktop.
Wordpress helper: Get slug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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