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



the_category_id › WordPress Function

Od0.71
Przestarzały0.71.0
the_category_id ( $display = true )
Parametry:
  • (bool) $display Optional. Whether to display the output. Default true.
    Wymagane: Nie
    Domyślny: true
Zobacz:
Powrót:
  • (int) Category ID.
Zdefiniowane na:
Codex:

Returns or prints a category ID.



Źródło

function the_category_ID($display = true) {
	_deprecated_function( __FUNCTION__, '0.71', 'get_the_category()' );

	// Grab the first cat in the list.
	$categories = get_the_category();
	$cat = $categories[0]->term_id;

	if ( $display )
		echo $cat;

	return $cat;
}