wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_category_id › WordPress Function

Da0.71
Deprecato0.71.0
the_category_id ( $display = true )
Parametri:
  • (bool) $display Optional. Whether to display the output. Default true.
    Richiesto: No
    Default: true
Vedi:
Ritorna:
  • (int) Category ID.
Definito a:
Codex:

Returns or prints a category ID.



Sorgenti

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