Popis
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.
Snímky obrazovky
Instalace
- 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.
Nejčastější dotazy
- 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 } ?>
Recenze
Pro tento plugin nejsou žádné recenze.
Autoři
Enhanced Mediapicker je otevřený software. Následující lidé přispěli k vývoji tohoto pluginu.
SpolupracovníciPřeložte “Enhanced Mediapicker” do svého jazyka.
Zajímá vás vývoj?
Prohledejte kód, podívejte se do SVN repozitáře, nebo se přihlaste k odběru protokolu vývoje pomocí RSS.
Přehled změn
0.2
- fixed preview dimensions for small thumbnails
0.1
- Initial release.