Skip to content

Instantly share code, notes, and snippets.

@Zodiac1978
Created September 23, 2016 20:18
Show Gist options
  • Save Zodiac1978/a45061947cab2d44beb82e200400009c to your computer and use it in GitHub Desktop.
Save Zodiac1978/a45061947cab2d44beb82e200400009c to your computer and use it in GitHub Desktop.
<?php
// See: https://snippets.webaware.com.au/snippets/filter-documents-in-wordpress-media-library/
/**
* add custom "mime types" (file supertypes)
* @param array $post_mime_types
* @return array
*/
function filterPostMimeTypes($post_mime_types) {
$post_mime_types['application'] = array('Document', 'Manage Documents', _n_noop('Document <span class="count">(%s)</span>', 'Documents <span class="count">(%s)</span>'));
return $post_mime_types;
}
add_filter('post_mime_types', 'filterPostMimeTypes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment