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>";
}
?>