Skip to content

Instantly share code, notes, and snippets.

@awakekat
Created March 25, 2016 06:19
Show Gist options
  • Save awakekat/631cce6505ad38242230 to your computer and use it in GitHub Desktop.
Save awakekat/631cce6505ad38242230 to your computer and use it in GitHub Desktop.
Pull the category name in lowercase letters
<?php $category_detail=get_the_category();
foreach($category_detail as $cd){
echo $cd->slug;
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment