Description
This plugin will add some nice features to the mediapicker. It will seemlesly integrate with your mediapicker, and it will let you:
- Switch from List to Grid view
- The option to show more then 10 items!
- Display your uploads only
- Preview images without opening them
It will display a large preview of the media items by hovering over it.
Check out the screenshots for the results.
User specific
The preferences set for the mediapicker are saved to the user profile. So each user can set it’s own personal viewing preferences.
Installation
- Upload enhanced-mediapicker to the /wp-content/plugins/ directory
- Activate ‘Enhanced Mediapicker’ through the ‘Plugins’ menu in WordPress
- That’s it, no configuration needed! You will see the extra options appear in the top of your Mediapicker.
FAQ
- Can I change the default value for the number of media items that are displayed?
-
Yes, if you want to set a different default value for all users in your theme functions.php you can use:
<?php add_filter('cp_mediapicker_limit', 'my_mediapicker_limit'); function my_mediapicker_limit () { return 20; // set your own number of items } ?>
For individual users you can add the User ID to the filter name. In this example
we will change the default value for User with User ID = 3.<?php add_filter('cp_mediapicker_limit_3', 'my_mediapicker_limit'); function my_mediapicker_limit () { return 40; // set your own number of items } ?>
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Enhanced Mediapicker” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Enhanced Mediapicker” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
0.2
- fixed preview dimensions for small thumbnails
0.1
- Initial release.