wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_category_id › WordPress Function

Seit0.71
Veraltet0.71.0
the_category_id ( $display = true )
Parameter:
  • (bool) $display Optional. Whether to display the output. Default true.
    Erforderlich: Nein
    Standard: true
Siehe:
Gibt zurück:
  • (int) Category ID.
Definiert in:
Codex:

Returns or prints a category ID.



Quellcode

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