Is this the right code how to display ads on specific categories on wordpress?
BUT
How to do this on pages like www*domain*com/about-us/ and
www*domain*com/about-us/contact-us
Code:
<?php if (in_category('category-slug-1')) { ?>
your ad code for category 1
<?php } elseif (in_category('category-slug-2')) { ?>
your ad code for category 2
<?php } elseif (in_category('category-slug-3')) { ?>
your ad code for category 3
<?php } else { ?>
leave blank or insert general ad code for categories not determined above
<?php } ?>
How to do this on pages like www*domain*com/about-us/ and
www*domain*com/about-us/contact-us