generate a list of catgegory ID for all categories associated with a post
Description
This code will generate a list of catgegory ID for all categories associated with a post in the loop. This is useful when wanting to know IDs without haveing to look through dashboard
This code will generate a list of catgegory ID for all categories associated with a post in the loop. This is useful when wanting to know IDs without haveing to look through dashboard
PHP Source Code
<?php foreach((get_the_category()) as $category) { echo $category->cat_ID ; } ?>