create a category icon or image for all categories associated with a post
Description
This code will create a category icon or image for all categories associated with a post in the loop. images must be a .png
This code will create a category icon or image for all categories associated with a post in the loop. images must be a .png
PHP Source Code
<?php foreach((get_the_category()) as $category) { echo '<img src="http://example.com/images/' . $category->cat_ID . '.png" alt="' . $category->cat_name . '" />'; } ?>