Advertisement
luisabarca

Show gallery featured thumbnail

Nov 28th, 2011
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. ARCHIVE-GALLERY.php
  2.  
  3. <?php $cats = get_galleries() ?>
  4. <ul>
  5.     <?php foreach ( $cats as $cat ) : ?>
  6.     <li>
  7.     <a href="<?php the_gallery_link($cat) ?>">
  8.             <?php the_gallery_featured_image($cat) ?>
  9.         </a>
  10.  
  11.     <a href="<?php the_gallery_link($cat) ?>">
  12.             <?php echo $cat->name ?>
  13.         </a>
  14.     </li>
  15.     <?php endforeach ?>
  16. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement