I'm trying to add a call in my php to indentify specific categories in order to display a banner. I have like 20 categories to add and I'm having trouble adding these category ID #'s to the code. My question is trying to find a way to add all the categories into the one line of code, rather than copying and pasting the entire block of code 20 times for each category ID.... The spot I want to add multiple ID #'s is in red:
<?php
if ($current_category_id == '33'){
if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerThree" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
}



