Is there a WP function that will return the name of a category given its ID?
Is there a WP function that will return the name of a category given its ID?
See if anything could be of help:
http://codex.wordpress.org/Function_Reference
get_cat_name() should work. For example:
<?php echo get_cat_name(13); ?>
This topic has been closed to new replies.