Skip to content

Instantly share code, notes, and snippets.

@mazulo
Last active August 29, 2015 13:56
Show Gist options
  • Save mazulo/9007561 to your computer and use it in GitHub Desktop.
Save mazulo/9007561 to your computer and use it in GitHub Desktop.
Como pegar o nome de uma categoria, no loop dentro de um template personalizado
<?php
$categoria = get_the_category();
$nomeCategoria = $categoria[0]->cat_name;
?>
<h2>notícias <?php echo $nomeCategoria; ?> </h2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment