Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Created August 16, 2013 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrdesigner/6250000 to your computer and use it in GitHub Desktop.
Save chrdesigner/6250000 to your computer and use it in GitHub Desktop.
Essa função mostra o nome da categoria referente ao post que esta cadastrado.
<?php global $post; $category = get_the_category($post->ID); echo $category[0]->name; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment