Advertisement
Guest User

Untitled

a guest
Apr 9th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.64 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4. <div class="row test margin_top_45"><!-- FEATURED START  -->
  5. <div class="col_3">
  6. <?php
  7. $wp_query = new WP_Query(array('showposts' => 3, 'orderby'=> 'rand', 'post_type' => array('actors',  'sound', 'operators')));
  8. while( have_posts() ) : the_post(); ?>
  9.  
  10.  
  11. <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
  12. <?php if ( has_post_thumbnail() ) {
  13. the_post_thumbnail('thumbnail');
  14. } else { ?>
  15. <img src="<?php bloginfo('template_directory'); ?>/img/fallback_image.jpg" alt="<?php the_title(); ?>" />
  16. <?php } ?>
  17.  
  18. <?php endwhile; ?>
  19. </div>
  20.  
  21. <div class="col_3">
  22. <?php
  23. $wp_query = new WP_Query(array('showposts' => 3, 'orderby'=> 'rand', 'post_type' => array('directors',  'authors', 'artists')));
  24. while( have_posts() ) : the_post(); ?>
  25.  
  26.  
  27. <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
  28. <?php if ( has_post_thumbnail() ) {
  29. the_post_thumbnail('thumbnail');
  30. } else { ?>
  31. <img src="<?php bloginfo('template_directory'); ?>/img/fallback_image.jpg" alt="<?php the_title(); ?>" />
  32. <?php } ?>
  33.  
  34. <?php endwhile; ?>
  35. </div>
  36.  
  37. <div class="col_3 last">
  38. <?php
  39. $wp_query = new WP_Query(array('showposts' => 3, 'orderby'=> 'rand', 'post_type' => array('theatres',  'events', 'designers')));
  40. while( have_posts() ) : the_post(); ?>
  41.  
  42.  
  43. <a href="<?php the_permalink() ?>" rel="bookmark">
  44. <?php if ( has_post_thumbnail() ) {
  45. the_post_thumbnail('thumbnail');
  46. } else { ?>
  47. <img src="<?php bloginfo('template_directory'); ?>/img/fallback_image.jpg" alt="<?php the_title(); ?>" />
  48. <?php } ?>
  49. </a>
  50.  
  51. <?php endwhile; ?>
  52. </div>
  53.  
  54. </div>
  55. </div><!-- CONTENT END -->
  56.  
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement