Advertisement
Guest User

Untitled

a guest
Nov 24th, 2011
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.87 KB | None | 0 0
  1. <div class="grid_4 alpha" id="content1">
  2. <h3>Solo albums</h3>
  3. <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
  4. <div class="recent-release"><h5 class="recent-release-title"><strong><?php the_title(); ?></a> [<?php the_time('d/m/y') ?>]</strong></h5>
  5. <?php if ( has_post_thumbnail() ) the_post_thumbnail( array( 80, 80 ), array( 'class' => 'alignleft') ); else { ?><?php } ?>
  6. <?php the_excerpt(__('Read on...','imseven')); ?>
  7. </div><div class="clear">&nbsp;</div>
  8. <?php endwhile;?>
  9. <?php wp_reset_query(); ?>
  10. <p>These are the solo albums.</p>
  11. </div>
  12.  
  13. <?php $loop = new WP_Query( array( 'post_type' => 'recentrelease', 'artists' => 'red-hot-chili-peppers', 'posts_per_page' => 10 ) ); ?>
  14. <div class="grid_4" id="content2">
  15. <h3>Red Hot Chili Peppers</h3>
  16. <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
  17. <div class="recent-release"><h5 class="recent-release-title"><strong><?php the_title(); ?></a> [<?php the_time('d/m/y') ?>]</strong></h5>
  18. <?php if ( has_post_thumbnail() ) the_post_thumbnail( array( 80, 80 ), array( 'class' => 'alignleft') ); else { ?><?php } ?>
  19. <?php the_excerpt(__('Read on...','imseven')); ?>
  20. </div><div class="clear">&nbsp;</div>
  21. <?php endwhile;?>
  22. <p>These are albums John did with RHCP.</p>
  23. </div>
  24. <?php $loop = new WP_Query( array( 'post_type' => 'recentrelease',  'posts_per_page' => 10 ) ); ?>
  25. <div class="grid_4 omega" id="content3">
  26. <h3>Collaborations</h3>
  27. <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
  28. <div class="recent-release"><h5 class="recent-release-title"><strong><?php the_title(); ?></a> [<?php the_time('d/m/y') ?>]</strong></h5>
  29. <?php if ( has_post_thumbnail() ) the_post_thumbnail( array( 80, 80 ), array( 'class' => 'alignleft') ); else { ?><?php } ?>
  30. <?php the_excerpt(__('Read on...','imseven')); ?>
  31. </div><div class="clear">&nbsp;</div>
  32. <?php endwhile;?>
  33. <p>These are the collaborations.</p>
  34. </div>
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement