Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Created July 11, 2015 15:20
Show Gist options
  • Save pablocattaneo/cbdf2123e8ed8b927ffa to your computer and use it in GitHub Desktop.
Save pablocattaneo/cbdf2123e8ed8b927ffa to your computer and use it in GitHub Desktop.
Returns categories names used in the current post
<?php
// returns categories names used in the current post
$term_list = wp_get_post_terms($post->ID, 'category', array("fields" => "names"));
foreach ($term_list as $categoryName) {
echo " <h1>$categoryName</h1>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment