Order of attachments
-
I need to change the order of the $fullSize images that are output by the code below. Currently it is showing the oldest image first. I would like the latest (most recently uploaded image) to display first. I have tried adding orderby= & order= to the get_attachments_by_media_tags args but it does nothing.
Thanks.<?php $media_items = get_attachments_by_media_tags('media_tags=home-portfolio'); ?> <?php if ($media_items) { foreach ($media_items as $mymedia) { $fullSize = wp_get_attachment_url($mymedia->ID); $image_caption = $mymedia->post_excerpt; echo ' <div> <h4>'. $image_caption .'</h4> <img src="'.$fullSize.'" alt="'. $image_caption .'" /> </div> '; } } ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Order of attachments’ is closed to new replies.