I need to get all file attachments which is not an image,
‘post_mime_type’ only accepts “any” or specific mime types,
How to grab all type of attachments, but images?
I need to get all file attachments which is not an image,
‘post_mime_type’ only accepts “any” or specific mime types,
How to grab all type of attachments, but images?
You must be logged in to post a comment.
WordPress has a function,
get_allowed_mime_types
, which will return all allowed types. We can filter this list and exclude any types containingimage
, then query for all remaining types by passing them as a comma separated list topost_mime_type
. This may not be the most efficient way to do it, you may be better off filteringposts_where
, but it’ll work.