Hello
I want to a different footer or change a picture in category templates
ex.
category-dogs.php
category-cats.php
i want a different image in footer
any ideas?
Hello
I want to a different footer or change a picture in category templates
ex.
category-dogs.php
category-cats.php
i want a different image in footer
any ideas?
You can do it with css if you use the body class. Or with conditional tags in your template files:
<?php
if(is_category('category-dogs')){
// show category dogs image
}
?>
or it's maybe easier to use a plugin to show an image for every category: http://wordpress.org/extend/plugins/taxonomy-images/
thanks
very fast answer
This topic has been closed to new replies.