Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $the_query = new WP_Query( array(
  2. 'post_type' => 'attachment',
  3. 'category_name' => 'photos',
  4. 'posts_per_page' => 25,
  5. ));
  6.  
  7. while ( $the_query->have_posts() ) : $the_query->the_post();
  8.  
  9. $attachment_data = wp_prepare_attachment_for_js($attachment);
  10.  
  11. echo '<div><div>
  12. <img src="'.wp_get_attachment_url ('medium').'"/>
  13. </div><div> List of Posts Go Here </div>';
  14.  
  15. endwhile; wp_reset_postdata();?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement