I would like to use the plugin EG-Attachments to display a list of attachments , where the caption value exceeds X and then orderby=caption DESC,
I currently have EG-Attachments set to display 3 attachments per post that is looped on category.php, and I have the orderby set to caption DESC , so my attachments will display on screen in order below (each new line is the caption from an attachment)
2011-2-1
2010-3
2009-2
Now, I want to display ONLY captions that are greater than, say, 2010. This would mean that from the results I showed you above, I would now display
2011-2-1
2010-3
Can someone make this possible? I have all of my options configured on the EG-Attachments options page in the admin panel and I call the EG-Attachments inside a loop on category.php using this code:
<?php echo do_shortcode('[attachments size=custom orderby="caption DESC" force_saveas=false]'); ?>