pablocattaneo
7/11/2015 - 3:20 PM

Returns categories names used in the current post

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