I’m building a template for twentyten child theme. I need to add a class in in the template page, but not in other pages.My template inherits the header and footer, so, I can’t change any markup there. How can I add a class in there without adding that class to other pages? Thanks a lot for the help.
Leave a Reply
You must be logged in to post a comment.
You’re probably looking for something like this:
make sure you add
body_class()
into your markup. Traditionally it would be in your body tag like so.<body id="foobar" <?php body_class(); ?>>