Advertisement
Guest User

Untitled

a guest
Jul 30th, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.77 KB | None | 0 0
  1. <?php
  2.             $args = array(
  3.                 'orderby' => 'id',
  4.                 'order' => 'ASC',
  5.                 'taxonomy' => 'album'
  6.             );     
  7.  
  8.             $categories=get_categories($args);
  9.             foreach($categories as $category) {
  10.             if($category->parent!=0) {
  11.         ?>
  12.             <li class="span3">
  13.                 <div class="thumbnail">
  14.                     <a href="<? bloginfo('url'); ?>/album/<?php echo $category->category_nicename; ?>" rel="nofollow">
  15.                         <img src="<?php bloginfo('url'); ?>/covers/<?php echo $category->category_nicename; ?>.jpg" alt="">
  16.                     </a>
  17.  
  18.                     <div class="caption">
  19.                         <a href="<? bloginfo('url'); ?>/album/<? echo $category->category_nicename; ?>">
  20.                             <? echo $category->parent . ' - ' . $category->name; ?>
  21.                         </a>
  22.                     </div>
  23.                 </div>
  24.             </li>
  25.         <?
  26.                 }
  27.             }
  28.         ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement