2013-09-27, 13:57:49
Hey all!
I am switching out subheaders (images/divs) on my interior pages with a pretty simple conditional
Client wants this to happen on more pages....can I somehow use an array with this rather than writing out a bunch of if's?
Noob bowing down!!!
Thanks!
I am switching out subheaders (images/divs) on my interior pages with a pretty simple conditional
PHP Code:
if (return_page_slug() == 'about-us') {
echo '<div class="InteriorAbout">Some copy here</div>';
} else { ...}
Client wants this to happen on more pages....can I somehow use an array with this rather than writing out a bunch of if's?
Noob bowing down!!!
Thanks!