Spent an hour on this and now Im spent... I have 10 categories on a wordpress blog and I want to display a different advertisement on each one of these categories below the post on single.php What I am trying to do is something like if category ID = number then echo this advertisement code PHP: No matter how I try it, its not working. Can some kind fellow give me the code to do this. Thanks!
try this <?php if ( in_category(1) ) { echo '{ADS HERE}'; } else if ( in_category(2) ) { echo '{ADS HERE}'; } else if ( in_category(3) ) { echo '{ADS HERE}'; } ?> PHP: