Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?php
  2. $queryObject = new Wp_Query( array(
  3. 'showposts' => 7,
  4. 'post_type' => array('post'),
  5. 'tag_slug__and' => array('featured-music'),
  6. 'orderby' => 1
  7. ));
  8. $i = 0;
  9. $class = array("first-post", "posts-below");
  10. while ( $queryObject->have_posts() ) {
  11. $queryObject->the_post();
  12. if ( $i == 0 ) { ?>
  13. <div class=<?php echo $class[0]; ?>>
  14. <a href="<?php the_permalink(); ?>" title="<?php printf(__( 'Read %s', 'wpbx' ), wp_specialchars(get_the_title(), 1)) ?>">
  15. <?php the_post_thumbnail('sidethumbs'); ?>
  16. </a>
  17. </div>
  18. <?php
  19. $i++;
  20. } else { ?>
  21. <div class=<?php echo $class[1]; ?>>
  22. <a href="<?php the_permalink(); ?>" title="<?php printf(__( 'Read %s', 'wpbx' ), wp_specialchars(get_the_title(), 1)) ?>">
  23. <?php the_post_thumbnail('sidethumbs'); ?>
  24. <?php the_title(); ?>
  25. </a>
  26. </div>
  27. <?php $i++;
  28. }
  29.  
  30.  
  31. } ?>
  32.  
  33. <?php elseif (8 < $count && $count <= 17 && $paged === 1) :
  34. if ($count === 9) echo '<div style="clear:both;"></div><div class="row div-break-first" style="margin:10px 0px 50px 0px;">' ,get_template_part('hot','music'), '</div>'; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement