Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php $args = array(
  2. 'post_parent' => 2436,
  3. 'numberposts' => '-1',
  4. 'post_status' => 'inherit',
  5. 'post_type' => 'attachment',
  6. 'post_mime_type' => 'image',
  7. 'orderby' => 'menu_order ID',
  8. 'order' => 'ASC'
  9. );
  10.  
  11. $images = get_children( $args );
  12.  
  13. ?>
  14.  
  15. <?php foreach($images as $image) { ?>
  16. <div class="slide">
  17. <img src="<?php echo wp_get_attachment_url($image->ID,'large'); ?>" />
  18. </div>
  19. <?php }; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement