Good morning,
I created a different background and several other images for certain pages of our site. Currently, the code below works well with the kids page on our site.
<body<?php if ( is_page(array('kids'))) {
echo ' class="kids" '; } ?>>
I am trying to figure out how to add the same CSS to other pages under the page for children. So, if you go to kids / block parties, how can I add it to the code to call this special CSS?
I tried below
<body<?php if ( is_page(array('kids, kids/block-party'))) {
echo ' class="kids" '; } ?>>
the comma does not appear to be registered for any reason.
This is a Wordpress download site.
thank
source
share