just call a php script to display the banners based on the tags of the post:
<!-- Tag based content START -->
<?php if ( has_tag('SPONSOR NAME') ): ?>
<a href="URL" ><img src="BANNER" border="0"></a>
<?php elseif ( has_tag('SPONSOR NAME') ): ?>
<a href="URL"><img src="BANNER" border="0"></a>
<?php elseif ( has_tag('SPONSOR NAME') ): ?>
<a href="URL"><img src="BANNER" border="0"></a>
<?php endif; ?>
|