disable update notification for individual plugins

Solutions on MaxInterview for disable update notification for individual plugins by the best coders in the world

showing results for - "disable update notification for individual plugins"
Asad
19 Oct 2017
1function filter_plugin_updates( $value ) {
2    unset( $value->response['akismet/akismet.php'] );
3    return $value;
4}
5add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );
6