Forked from rniswonger/wp-disable-plugin-update.php
Last active
June 6, 2024 09:57
-
-
Save ebetancourt/89b105d7334495535415799832511938 to your computer and use it in GitHub Desktop.
WordPress - Disable specific plugin update check
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// have to add that opening tag to get syntax highlighting... ¯\_(ツ)_/¯ | |
/** | |
* Prevent update notification for plugin | |
* http://www.thecreativedev.com/disable-updates-for-specific-plugin-in-wordpress/ | |
* Place in theme functions.php or at bottom of wp-config.php | |
*/ | |
function disable_plugin_updates( $value ) { | |
$pluginsToDisable = [ | |
'plugin-folder/plugin.php', | |
'plugin-folder2/plugin2.php' | |
]; | |
if ( isset($value) && is_object($value) ) { | |
foreach ($pluginsToDisable as $plugin) { | |
if ( isset( $value->response[$plugin] ) ) { | |
unset( $value->response[$plugin] ); | |
} | |
} | |
} | |
return $value; | |
} | |
add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' ); |
Thanks. This works great.
Is there a relatively easy way to have some text display next to plug-ins (for which updates are disabled), indicating they are disabled?
Beautiful. Thanks so much.
Works like a charm, thanks!
Sweet! Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Plugin to do this for files with version control: https://github.com/cliffordp/tk-exclude-vcs-updates