Advertisement
Guest User

Untitled

a guest
Sep 21st, 2011
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.58 KB | None | 0 0
  1. <?php
  2. $c = 1; //init counter
  3. $bpr = 3; //boxes per row
  4. $my_query = new WP_Query(category_name=Artists&posts_per_page=3order=rand);
  5. while ($my_query->have_posts()) : $my_query->the_post();
  6. $do_not_duplicate[] = $post->ID ?>
  7.        
  8. <div class="postgrid" id="post-<?php the_ID(); ?>">
  9.  
  10. <div class="postthumb">
  11. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('grid-post-image'); ?></a><div class="borderthumb"></div><div class="posttitle"><h1><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
  12.   <p><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">Click for more</a></p></div>
  13.   </div>
  14.   </div>
  15.  
  16.    
  17. <?php endwhile; ?>
  18. <div class="clr">
  19. </div>
  20. </div>
  21.  
  22. <div class="gridContainer">
  23.  
  24. <?php
  25. $c = 1; //init counter
  26. $bpr = 3; //boxes per row
  27. $my_query = new WP_Query(category_name=Performance&posts_per_page=3order=rand);
  28. if (have_posts()) : while (have_posts()) : the_post();
  29.   if( $post->ID == $do_not_duplicate ) continue; ?>
  30.        
  31. <div class="postgrid" id="post-<?php the_ID(); ?>">
  32.  
  33. <div class="postthumb">
  34. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('grid-post-image'); ?></a><div class="borderthumb"></div><div class="posttitle"><h1><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
  35.    <p><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">Click for more</a></p></div>
  36.   </div>
  37. </div>
  38.    
  39. <?php endwhile; endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement