manifest / performance / wp-cubi-imagemin
wp-cubi-imagemin
Standalone image minification WordPress plugin
by Pierre Dargham, Globalis Media Systems · github.com/globalis-ms/wp-cubi-imagemin · website
★ 13stars
18kcomposer installs
3forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/globalis-ms/wp-cubi-imagemin/archive/refs/heads/master.zipAlso on Packagist as globalis/wp-cubi-imagemin:
composer require globalis/wp-cubi-imageminFrom the readme
wp-cubi-imagemin
Standalone image minification WordPress plugin
Overview
wp-cubi-imagemin is a very simple image minification plugin for WordPress, meant to be used in a composer installation. It uses a couple of image minification tools to optimize uploaded images (jpg, png, gif and svg).
wp-cubi-imagemin is essentially a WordPress wrapper for psliwa/image-optimizer.
Installation
- composer require globalis/wp-cubi-imagemin
Configuration
The plugin will try to find the image minification tools it needs on the system. But you can provide your own binaries instead, and the plugin will use them.
To use your own binaries, just define the following constants in your configuration files, pointing to your binaries paths :
If you do not define one ot the binaries paths, the plugin will try to use the system version. If it doesn't find an installed version on the system, it will just skip this tool and use the other ones.
You don't need to have all the tools working, but it is recommanded to have at least pngquant, jpegoptim and gifsicle to provide a meaningfull level of minification.
Note: binary files must have execution permissions.
Hooks
- applyfilters('wp-cubi-imagemin\o
Read the full README on GitHub →