How to do this?

lhurey

Registered Member
Joined
Sep 30, 2009
Messages
89
Reaction score
223
Is this the right code how to display ads on specific categories on wordpress?
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 } ?>
BUT

How to do this on pages like www*domain*com/about-us/ and
www*domain*com/about-us/contact-us
 
Back
Top