விளக்கம்
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)
Screenshots
Installation
- Upload
mimes.php
to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- 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;
}
Reviews
இந்த செருகுநிரலுக்கு மதிப்புரைகள் எதுவும் இல்லை.
பங்களிப்பாளர்கள் & உருவாக்குனர்கள்
“More Mime Type Filters” is open source software. The following people have contributed to this plugin.
பங்களிப்பாளர்கள்Translate “More Mime Type Filters” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
0.3
- Prettier admin page
- Clean up notices
0.2
- bug fix for non-admins in debug mode
0.1
- First release