Codex

Template Tags/the category ID


This function has been deprecated. That means it has been replaced by a new function or is no longer supported, and may be removed from future versions. All code that uses this function should be converted to use its replacement if one exists.


Contents

Description

Displays or returns the numeric ID of the category a post belongs to. This tag must be used within The Loop.

Replace With

This tag was deprecated when multiple categories were added to WordPress, and there is no one-to-one correspondence with another tag. This PHP code block provides an example for how you can replace it:

<?php 
foreach((get_the_category()) as $category) { 
    echo $category->cat_ID . ' '; 
} ?>

Usage

 <?php the_category_ID(echo); ?> 

Example

Displays a corresponding image for each category.

<img src="<?php the_category_ID(); ?>.gif" />

Parameters

echo 
(boolean) Display the category ID (TRUE) or return it for use in PHP (FALSE). Defaults to TRUE.

Related

the_category, the_category_rss, single_cat_title, category_description, wp_dropdown_categories, wp_list_categories, in_category, get_category_parents, get_the_category get_category_link,

How to pass parameters to tags

Go to Template Tag index