Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php
  2. rewind_posts();
  3. $paged = ( get_query_var( 'paged' ) ) ? get_query_var('paged') : 1;
  4. $args = array( 'post_type' => 'design_asset', 'posts_per_page' => 100, 'orderby' => 'title', 'order' => 'ASC' );
  5. $loop = new WP_Query( $args );
  6. while ( $loop->have_posts() ) : $loop->the_post();
  7. ?>
  8. <div class="col-md-4 col-xs-12">
  9. <div class="thumbnail">
  10. <div class="caption">
  11. <?php the_post_thumbnail( 'thumbnail', array('class' => 'img-responsive') ); ?>
  12. <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  13. <p class="excerpt"><?php the_excerpt(); ?></p>
  14. </div>
  15. </div>
  16. </div>
  17. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement