This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

More Mime Type Filters

توضیحات

In the Media Library, there are a few convenient filter links (Images | Audio | Video). This plugin allows you to add other types to that list.
For example, you could add a PDFs link to easily find all PDFs in the Media Library.

May require at least 2.8.6 (definitely doesn’t work on anything older than that)

عکس‌های صفحه

  • The admin page in the menu
  • Before the plugin
  • With the plugin
  • (Old) Admin page
  • Admin page (since v0.3)

نصب

  1. Upload mimes.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Find the Mime Types page under Media in the sidebar

سوالات متداول

How can I add more mime types?

If you’ve customized the allowed mime types for upload, they’ll automatically appear on this plugins admin page.
Here’s some example code for how to all additional mime types to be uploaded:
add_filter( ‘upload_mimes’, ‘make_alfredextenstion_allowed_upload’ );
function make_alfredextenstion_allowed_upload( $mimes ) {
$mimes[‘alfredextension’] = ‘application/octet-stream’;
return $mimes;
}

نقد و بررسی‌ها

نقد و بررسی‌ای برای این افزونه یافت نشد.

توسعه دهندگان و همکاران

“More Mime Type Filters” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کرده‌اند.

مشارکت کنندگان

ترجمه “More Mime Type Filters” به زبان شما.

علاقه‌ مند به توسعه هستید؟

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

گزارش تغییرات

0.3

  • Prettier admin page
  • Clean up notices

0.2

  • bug fix for non-admins in debug mode

0.1

  • First release