Advertisement
Guest User

Untitled

a guest
May 28th, 2015
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <ul class="small-block-grid-2 medium-block-grid-3 large-block-grid-4">
  2.  
  3. <?php
  4. $args = array( 'post_type' => 'my-cpt', 'order' => 'ASC', 'orderby' => 'date' );
  5. $the_query = new WP_Query( $args );
  6. if ( $the_query->have_posts() ) :
  7. while ( $the_query->have_posts() ) : $the_query->the_post();?>
  8.  
  9. <li>
  10. <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'post-thumbnail' );$url = $thumb['0'];?>
  11. <a href="<?php the_permalink();?>"><img src="<?php echo esc_url($url); ?>" alt="" /></a>
  12. <h3><a href="<?php the_permalink();?>"><?php the_title();?></a></h3>
  13. </li>
  14.  
  15. <?php endwhile; endif; wp_reset_postdata();?>
  16. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement