How do you get the first category id of a post on a single post page?
How do you get the first category id of a post on a single post page?
Try this:
<?php
$categories = get_the_category($post->ID);
echo $categories[0]->term_id;
?>This topic has been closed to new replies.