wpseek.com
				A WordPress-centric search engine for devs and theme authors
			the_category_head is deprecated since version 0.71.0!
Alternative: get_the_category_by_ID()
Alternative: get_the_category_by_ID()
the_category_head › WordPress Function
Since0.71
Deprecated0.71.0
› the_category_head ( $before = '', $after = '' )
| Parameters: (2) | 
 | 
| See: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Prints a category with optional text before and after.
Related Functions: the_category_id, the_category, the_category_rss, update_category_cache, get_the_category
	Source
function the_category_head( $before = '', $after = '' ) {
	global $currentcat, $previouscat;
	_deprecated_function( __FUNCTION__, '0.71', 'get_the_category_by_ID()' );
	// Grab the first cat in the list.
	$categories = get_the_category();
	$currentcat = $categories[0]->category_id;
	if ( $currentcat != $previouscat ) {
		echo $before;
		echo get_the_category_by_ID($currentcat);
		echo $after;
		$previouscat = $currentcat;
	}
}