Hi,
I would like to show the category of the specific post as post class.
The reason for that is, that the related posts should get a specific border color for each category they are in.
Is there a chance to realise that somehow? And if not where can I find the php template to maybe change that with anything like this:
[code]$categories = get_the_category();
foreach ( $categories as $category ) {
echo ‘&lt;div class=".esc_attr($category-&gt;cat_name)."&gt;<a>term_id ) ).’"&gt;
‘.esc_html( $category-&gt;cat_name ).’
</a>&lt;div&gt;’;
}[/code]
Thanks in advance,
Sonja