anttiviljami / wp-disable-any-plugin-updates
Disables updates for a list of plugins permanently without editing them
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 1
Open Issues: 0
Type:wordpress-plugin
This package is auto-updated.
Last update: 2024-10-27 14:53:08 UTC
README
Disables updates for a list of plugins permanently without editing them
Just add these lines to your wp-config to disable updates for these plugins:
/**
* Disable updates for these plugins
*/
define( 'PLUGINS_DISABLED_FOR_UPDATE', serialize( array(
'jetpack/jetpack.php',
'woocommerce/woocommerce.php',
) ) );
Installation
The Composer Way (preferred)
Install the plugin via Composer
composer require anttiviljami/wp-disable-any-plugin-updates
Activate the plugin
wp plugin activate wp-disable-any-plugin-updates