WordPress - get_attached_media what is type name for words documents?

381 Views Asked by At

I have words documents attached to a post and I want to fetch them when I am on that post.

$docs = get_attached_media('attachment', $post->ID);
var_dump($docs);

I get nothing. What is the type name for documents then? It is not mentioned in WP site at all.

Any ideas?

1

There are 1 best solutions below

0
On

get_attached_media( string $type, int|WP_Post $post ) $type is mime type you can get the list of mime types here https://www.sitepoint.com/web-foundations/mime-types-complete-list/