Hi,
I'm trying to get some icons in front of my article titles on the homepage, and a different icon per category (there will just be around 5 of them), but I don't really know where to start.
A friend of mine told me the following:
Add this to the index.php:
<div class="<?php
$cats = get_the_category();
echo $cats[0]->category_name;
?>"></div>
where category_name is the name of the category ;) duh.
And then style with:
.category-name in de css (so add and place image).
But I don't know where to put the php in the index.php.
Can someone please get me into the right direction?
Very much appreciated!
david.
p.s.: I'm using the thematic theme.