the_category_head()WP 0.71

Устарела с версии 0.7. Больше не поддерживается и может быть удалена. Используйте get_the_category_by_ID().

Prints a category with optional text before and after.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

the_category_head( $before, $after );
$before(строка)
Text to display before the category.
По умолчанию: ''
$after(строка)
Text to display after the category.
По умолчанию: ''

Заметки

Список изменений

С версии 0.71 Введена.
Устарела с 0.71 Use get_the_category_by_ID()

Код the_category_head() WP 6.5.2

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