• Blog

    Latest from our Blog

  • Tools

    Our Favourite WP Tools

  • Hosting

    Recommended Web Hosts

  • Coupons

    Get great money off deals

  • Themes

    WordPress Theme Directory

  • Plugins

    WordPress Plugins Directory

  • Services

    Our WordPress Services

For the next version of WPLift, Im working on a new theme and had the need to use icons for each category as a visual clue to help people identify content on the homepage. Fortunately this is pretty easy to accomplish in WordPress as each category has its own ID number which we can use to display the images.

Code for your Theme

You can use the following code in your theme where you want the image to appear, replace example.com/images with the path to a folder on your site and name your icons 1.jpg, 2.jpg, 3.jpg and so on , making the number correspond to your category IDs.

<?php
foreach((get_the_category()) as $category) {
    echo '<img src="http://example.com/images/' . $category->cat_ID . '.jpg" alt="' . $category->cat_name . '" />';
}
?>

Source: WordPress Codex

Use a Plugin

If you want a more advanced way to do this, there is a plugin called “Category Icons” you can use with some more advanced features:

  • displays one or more icons in front of your post title or wherever you want
  • displays icons in the sidebar, with or without the category name, with or without the help of the widget
  • includes a widget.
  • you can make rollover with the icons in the sidebar
  • is able to display category icons in your RSS

Download Category Icons Plugin &raquo


Post Tags

Author:

Oliver Dale is the founder of Kooc Media, a startup company based in the UK. Kooc Media builds Online Communities, Web Applications, WordPress Plugins and has been publishing content online for many years.

Leave Yours +

9 Comments

  1. This Idea is Innovating! Thanks a Lot for Sharing this Plugin, I will Definitely Try this Plugin for my Blog!

  2. Thanks so much, i always asked how to show icons in categories and pages. I’m happy to visit your site.. Thanks for helping us

  3. I’ll suggest to do that with the category slug, not the ID. If you install your theme in other WP installation, it will still work.

  4. in which file should i add this?

  5. Hi HomeForGeekS.

    Header.php would work fine.

Leave a Reply

* Required Fields.
Your email will not be published.

Search