Is there any way to order attachments by filename within a WP_Query?
For example, in the arguments:
$args = array(
'post_type' => 'attachment',
'post_status' => 'inherit',
'post_mime_type' => 'image',
'order' => 'DESC',
'orderby' => 'filename'
);