wordpress - WP_Query - order attachments by filename? -


is there way order attachments filename within wp_query?

for example, in arguments:

$args = array(     'post_type' => 'attachment',      'post_status' => 'inherit',     'post_mime_type' => 'image',     'order' => 'desc',     'orderby' => 'filename' ); 

there no orderby filename option in attachments argument. need sort attachments array based on available value attachement array. sort filename may use guid value.

please read link sort array value php array sort within array based on value


Comments