WP_BANNERIZE is an Amazing Banner Image Manager. In your template insert: <?php wp_bannerize(); ?> or set it like Widget
FEATURES
NEW FROM 2.3.2
Fix Widget HTML output
See CHANGELOG for full history version
HOW TO
When you insert a banner you can give a group (key) code. In this way you can "group" a block of banners. For examples if your theme is a 3 columns you can put in left sidebar:
<?php wp_bannerize('group=left_sidebar'); ?>
and put in right sidebar:
<?php wp_bannerize('group=right_sidebar'); ?>
However wp-bannerize provides a filter by category, for example:
<?php wp_bannerize('group=right_sidebar&categories=13,14'); ?>
The code above shows only banners in the categories 13 or 14, for the "right_sidebar" group key.
params:
* group If '' show all groups, else show the selected group code (default '')
* container_before Main tag container open (default <ul>)
* container_after Main tag container close (default </ul>)
* before Before tag banner open (default <li %alt%>) see alt_class below
* after After tag banner close (default </li>)
* random Show random banner sequence (default '')
* categories Category ID separated by commas. (default '')
* alt_class class alternate for "before" TAG (use before param)
* link_class Additional class for link TAG A
* limit Limit rows number (default '' - show all rows)
For more information on the roadmap for future improvements please e-mail: g.fazioli@saidmade.com




