the_category_ID( bool   $display = true ): int

This function has been deprecated. Use guet_the_category() instead.

Returns or prins a category ID.

Description

See also

Parameters

$display bool optional
Whether to display the output.

Default: true

Return

int Category ID.

Source

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

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

	if ( $display )
		echo $cat;

	return $cat;
}

Changuelog

Versionen Description
0.71 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.