Advertisement
alchymyth

3-in-a-row

Mar 18th, 2011
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. <div id="recent-projects">  
  2.                 <?php
  3.             $count = 0;
  4.             $recentblog = new WP_Query();
  5.             $recentblog->query("category_name=parent-category");
  6.             while($recentblog->have_posts()) : $recentblog->the_post()          
  7.         ?>        
  8.        
  9.         <div class="project-box<?php if( $count%3 == 0 ) { echo '-1'; }; $count++; ?>">
  10.                 <a href="<?php the_permalink(); ?>"><img src="<?php $thumb = get_post_custom_values('portfolio-image'); echo $thumb[0]; ?>" alt="<?php the_title(); ?>" />
  11.                 <h4><?php the_title(); ?></h4></a>                      
  12.         </div>
  13.        
  14.          <?php endwhile;
  15.         ?>
  16. </div><!--end recent-projects-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement