the_category_ID

Definition:
function the_category_ID($echo = true) {}

Return or Print Category ID.

Parameters

  • bool $echo

Source code

function the_category_ID($echo = 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 ( $echo )

		echo $cat;



	return $cat;

}

2989

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: