Descrição
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.
Imagens de tela
Instalação
- 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 } ?>
Avaliações
Não existem avaliações para esse plugin.
Colaboradores e desenvolvedores
“Enhanced Mediapicker” é um software com código aberto. As seguintes pessoas contribuíram para este plugin.
ColaboradoresTraduzir “Enhanced Mediapicker” para o seu idioma.
Interessado no desenvolvimento?
Navegue pelo código, dê uma olhada no repositório SVN ou assine o registro de desenvolvimento via RSS.
Registro de alterações
0.2
- fixed preview dimensions for small thumbnails
0.1
- Initial release.