Different logo image for some categories
-
Hello! I have different image background’s for some of my categories. I’ve done this by that code in header.php:
`<?php
if (is_category()) {
$cat_obj = $wp_query->get_queried_object();
$cat_id = $cat_obj->term_id;
$cat = ‘category_’ . $cat_id;
}
?>`And that in style.css:
`
.category_1009,.category_1012,.category_1010,.category_1011,.category_1027 {
background: #000 url(‘someimage.png’) top left repeat; background-attachment: fixed; !important;
}
`but now I have another issue. How can we change logo image for specified categories? I’m aware of possibility to change logo image in theme options and it’s works. But how to set different logos for categories?
Maybe you guys can help me?
- The topic ‘Different logo image for some categories’ is closed to new replies.