Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php $argsb = array('posts_per_page' => 3, 'post_status' => 'publish');?>
  2. <?php $blog = new WP_Query($argsb); if ( $blog->have_posts() ):?>
  3. <section class="blog-slider slider">
  4. <div class="flexslider">
  5. <ul class="slides">
  6. <li class="slide">
  7. <?php while ( $blog->have_posts() ) : $blog->the_post(); $count++;?>
  8. <article class="blog-post-slide<?php if ( 0 == $count%2 ) {echo' middle-blog-slide';} ?>">
  9. <?php if ( has_post_thumbnail() ) {?>
  10. <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><div class="blog-slide-image"><?php the_post_thumbnail('blog-slide');?></div></a>
  11. <?php } ?>
  12. <?php the_title();?>
  13. </article>
  14. <?php endwhile; wp_reset_postdata();?>
  15. </li>
  16. </ul>
  17. </div>
  18. </section>
  19. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement