wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



the_category_head › WordPress Function

Od0.71
Przestarzały0.71.0
the_category_head ( $before = '', $after = '' )
Parametry: (2)
  • (string) $before Optional. Text to display before the category. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
  • (string) $after Optional. Text to display after the category. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
Zobacz:
  • get_the_category_by_ID()
Zdefiniowane na:
Codex:

Prints a category with optional text before and after.



Źródło

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