Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. function display_imagens_lista() {
  3. if($images = get_posts(array(
  4. 'post_parent' => $teste,
  5. 'post_type' => 'attachment',
  6. 'numberposts' => -1, // show all
  7. 'post_status' => 'published',
  8. //'post_mime_type' => 'image',
  9. 'orderby' => 'data',
  10. 'order' => 'DESC',
  11. ))) {
  12. foreach($images as $image) {
  13. $attimg = wp_get_attachment_link($image->ID);
  14. echo $attimg;
  15. }
  16. }
  17. }
  18.  
  19. ?>
  20.  
  21. <div class="slideshow-images">
  22. <?php display_imagens_lista(); ?>
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement