Adding Links to Category Images
-
I am using this code to show images in place of the standard categories:
<?php foreach((get_the_category()) as $category) { echo '<img src="https://example.com/images/' . $category->cat_name . '.jpg" alt="' . $category->cat_name . '" />'; } ?>
This works perfectly, but I would like for the images to also link to the appropriate categories. How do I accomplish this?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Adding Links to Category Images’ is closed to new replies.