Untitled
By: a guest | Mar 18th, 2010 | Syntax:
PHP | Size: 0.55 KB | Hits: 106 | Expires: Never
<li class='widget categories'>
<h3>Categories</h3>
<div class='widgetContainer'>
<?php $categories = get_categories(); ?>
<ul>
<?php foreach($categories as $cat): ?>
<li>
<a href='<?php echo get_category_link($cat->term_id); ?>'>
<img src='<?php bloginfo('template_directory'); ?>/images/cat/<?php echo strtolower(str_replace(' ', '_', $cat->name)); ?>.png' alt='<?php echo $cat->name; ?>' />
<span><?php echo $cat->name; ?></span>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
</li>