Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 18th, 2010 | Syntax: PHP | Size: 0.55 KB | Hits: 106 | Expires: Never
Copy text to clipboard
  1.         <li class='widget categories'>
  2.                 <h3>Categories</h3>
  3.                
  4.                 <div class='widgetContainer'>
  5.                         <?php $categories = get_categories(); ?>
  6.                         <ul>
  7.                                 <?php foreach($categories as $cat): ?>
  8.                                         <li>
  9.                                                 <a href='<?php echo get_category_link($cat->term_id); ?>'>
  10.                                                         <img src='<?php bloginfo('template_directory'); ?>/images/cat/<?php echo strtolower(str_replace(' ', '_', $cat->name)); ?>.png' alt='<?php echo $cat->name; ?>' />
  11.                                                         <span><?php echo $cat->name; ?></span>
  12.                                                 </a>
  13.                                         </li>
  14.                                 <?php endforeach; ?>
  15.                         </ul>
  16.                 </div>
  17.         </li>