I'm building a wordpress theme right now and I'm using conditionals in the sidebar to display different information for each page like so:
if (is_page('services')) {
etc.....
} elseif (etc....
However, some of the subpages do not have their own specific conditional. How can I make it so that a conditional for a parent page applies to its subpages as well?
Thanks!