How can I change body class from "wordpress" to xxxx using functions.php?
ThemeShaper Forums » Thematic
Change body class
(6 posts)-
Posted 3 years ago #
-
Hey,
try this one:
function repl_wp($bc) {
return str_replace('wordpress', 'whatever', $bc);
}
add_filter('body_class','repl_wp');
Cheers,
Chris
Posted 3 years ago # -
Hi Chris, Is it possible to change body class according to category within functions? (Want a simple way to change the background colour of the page depending on category.)
Posted 3 years ago # -
Hey Matt,
there's no need to change anything except of your style.css :-)
Try this one:
body.s-category-YourCategory {background:red;}
This will display a red background on all single pages with a post listed in category YourCategory.
Cheers,
Chris
Posted 3 years ago # -
Works!!! Thanks Chris.
Posted 3 years ago # -
Chris, thats perfect. Thanks!
Posted 3 years ago #
Reply
You must log in to post.