Question: How can we disable 'update notification' for individual single plugin in wordPress?
Answer: Using below filter we can disable 'update notification' for individual single plugin in wordPress.
Answer: Using below filter we can disable 'update notification' for individual single plugin in wordPress.
1 2 3 4 5 6 7 8 | /******/ /* Disable update notification for individual single plugin /******/ function filter_plugin_updates( $value ) { unset( $value ->response[ 'akismet/akismet.php' ] ); return $value ; } add_filter( 'site_transient_update_plugins' , 'filter_plugin_updates' ); |