I customised my theme where the index.php works as a “page”. But with <body <?php body_class(); ?>> it’s create the class “blog”, which I don’t want to. I want to change the class name to “index” or “home. How can I do this?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The body_class() function accepts several parameters. The classes are restricted to the defaults listed, but I think you could filter it in your theme’s function.php file and let “body” out.
After checking out the source code, I’m not really sure if you can leave it out. It’s sort of hard-coded, you should filter get_body_class() maybe (if possible).
Check the link to read more about it.