Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created November 29, 2016 17:11
Show Gist options
  • Select an option

  • Save luisfelipe-dev/f394768a5ecd918c0fb0cdaecad7dea0 to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/f394768a5ecd918c0fb0cdaecad7dea0 to your computer and use it in GitHub Desktop.
Este código mostra em qual categoria esta aplicado o post
<?php
global $post;
$categoria = get_the_category($post->id);
$nomeCategoria = $categoria[0]->cat_name;
echo $nomeCategoria;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment