开发者 |
daveshine
deckerweb wpautobahn |
---|---|
更新时间 | 2019年2月23日 04:39 |
捐献地址: | 去捐款 |
PHP版本: | 4.0 及以上 |
WordPress版本: | 5.1 |
版权: | GPL-2.0-or-later |
版权网址: | 版权信息 |
Cleaner Start Page for "Add Plugins" (Installer) A LARGE search box to find plugins for installing more easily and way faster. No clutter. The regular content of the "Featured" tab was removed: not the 6 same old plugin cards cards any longer and no useless tag cloud anymore! Plus: set the number of displayed plugin cards per page via "Screen Options" tab (on top right corner).Scratching My Own Itch As of WordPress 4.0+, going to "Add Plugins" page and being welcomed by always the same old 6 featured plugin cards annoyed me big time! So I thought on how to change this default behavior. Due to WordPress' genius Hooks & Filter functionality I could easily tweak this via my plugin. Now it starts with what should have been the default (in my opinion) from the beginning: a large and nice plugin search box - because that's what I do all the day :). Side benefit: better performance as no external plugin card content has to be loaded! And there you have it, a one-purpose admin helper plugin aiming at (super) administrators and webmasters searching for and installing plugins from WordPress.org repository on a daily basis. Video of Plugin Walkthrough plus Demo: [youtube https://www.youtube.com/watch?v=fD42vNhuArA] original video link: Screencast by plugin developer David Decker Benefits & Advantages
plugin-install.php
admin start page!/wp-admin/
when and where needed.install_plugins
for your user role (to access the plugin installer page)!cleaner-plugin-installer.pot
) for translators is also always included :)cleaner-plugin-installer
folder to the /wp-content/plugins/
directoryinstall_plugins
for your user role (to access the plugin installer page)!/wp-content/languages/cleaner-plugin-installer/
(just create this folder) - This enables you to use fully custom translations that won't be overridden on plugin updates. Also, complete custom English wording is possible with that, just use a language file like cleaner-plugin-installer-en_US.mo/.po
to achieve that (for creating one see the tools on "Other Notes").Yes, but only its content! The page query parameter ?tab=featured
was left untouched! This way all works as before, if you access the plugin-install.php
admin page, but you'll be welcomed with a big search input field.
In my opinion this helps to find specific plugins (within certain areas, topics, use cases...) a lot faster - via your admin area. For example, clicking on "TinyMCE" will list you all plugin cards tagged (by their authors) with "tinymce". The original built-in plugin tag cloud is way to generic, so I removed it. Note: Manually curated tag lists for a lot of plugin types, use cases and popular plugin solutions. Listing here maintained by David Decker (plugin author of "Cleaner Plugin Installer"). Tag itself are from plugin's readme header.
Glad you asked :). This is a bit more experimental, I guess. However, in my opinion, the WPCore plugin and service are incredible useful, so I thought of some basic integration. This could help to jump faster to WPCore functionality if the service is already active. If it is not active yet, users are informed about it and can install and register for it super fast. This may help users get aware of an alternative for collecting & managing their favorite plugins - and bulk installing them on any installation. Disclaimer: "I am NOT affiliated with 'WPCore' in any way, other than that, being a normal user of their service & plugin. 'WPCore' is a community effort aiming to make some things a bit easier for a lot of administrators and webmasters." —David Decker, author of "Cleaner Plugin Installer" plugin
I think it is really useful to easily check for the newest additions on WordPress.org plugin repository without leaving your admin area. Also great for test installations to just install a brand new plugin and try it out! :)
Absolutely! Just open a new thread in the support forum here and let us know your feedback! Thank you!
This is easily possible with a little code snippet added to a functionality plugin, snippet manager or to your theme's/ child theme's functions.php
:
`
add_filter( 'install_plugins_tabs', 'custom_cpi_plugin_installer_tabs_tweaks', 15, 1 );
/**
functions.php
is always dangerous and at your own risk! You may experience a crashed site plus lots of trouble when changing your theme/ child theme afterwards. Also, any generic admin functionality has no place in your theme!
Possible, via the above code for "Collections" tab: you only have to add the following line after the first "unset" line (or replace this line with that):
unset( $tabs[ 'topics' ] );
For power users this is to remove/ hide the following things:
That is relatively easy, just add the following code snippet to your wp-config.php
file or a functionality plugin:
`
/**
.pot
file for all translators.$page = 1
to all our tab functions to be 100% compliant with WordPress Core functions expecting this.readme.txt
file here..pot
file for all translators.readme.txt
file..pot
file for all translators..pot
file for all translators.:hover
styling for any instance showing "plugin cards" - this way you can better visually distinguish those cards!readme.txt
file..pot
file for all translators.readme.txt
file..pot
file for all translators..pot
file for all translators.readme.txt
file.