Skip to content

Instantly share code, notes, and snippets.

@rniswonger
Last active August 9, 2024 14:40
Show Gist options
  • Save rniswonger/ee1b30e5fd3693bb5f92fbcfabe1654d to your computer and use it in GitHub Desktop.
Save rniswonger/ee1b30e5fd3693bb5f92fbcfabe1654d to your computer and use it in GitHub Desktop.
WordPress - Disable specific plugin update check
/**
* 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 ) {
if ( isset($value) && is_object($value) ) {
if ( isset( $value->response['plugin-folder/plugin.php'] ) ) {
unset( $value->response['plugin-folder/plugin.php'] );
}
}
return $value;
}
add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' );
@ZRVdeveloper
Copy link

or you can write this line in code

add_filter('site_transient_update_plugins', '__return_false');

@Kadigan
Copy link

Kadigan commented Aug 2, 2024

or you can write this line in code

add_filter('site_transient_update_plugins', '__return_false');

Note that the point is to disable specific plugin updates, not all of them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment