Advertisement
Guest User

Pet Gallery Sidebar Template Page

a guest
Feb 16th, 2012
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.75 KB | None | 0 0
  1. get_header(); ?>
  2.  
  3.         <div id="primary">
  4.             <div id="content" role="main">
  5.                 <div id="pet_gallery">
  6.                
  7.                 <ul class="petlist">
  8.                     <?php
  9.  
  10.                     $query = new WP_Query(array('post_type' => 'pet', 'status' => 'adopt'));
  11.  
  12.                     while ($query->have_posts()) : $query->the_post();
  13.                     ?>
  14.  
  15.                     <li>                   
  16.                         <h2><a" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  17.                         <a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_post_thumbnail( 'thumbnail' ); ?></a>
  18.                     </li>
  19.  
  20.                     <?php endwhile; wp_reset_query(); ?>
  21.                 </ul><!-- #pet post list -->
  22.  
  23.                 </div> <!-- #pet_gallery -->
  24.  
  25.             </div><!-- #content -->
  26.         </div><!-- #primary -->
  27.  
  28. <?php get_sidebar(); ?>
  29. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement