Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created November 5, 2013 18:13
Show Gist options
  • Save tjhole/7323480 to your computer and use it in GitHub Desktop.
Save tjhole/7323480 to your computer and use it in GitHub Desktop.
WORDPRESS: List caterogies inside loop
<?php $categories = get_the_category(); foreach($categories as $category) { echo $category->name . ' '; } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment