Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Disable update notification for individual plugins

function filter_plugin_updates( $value ) {
    unset( $value->response['akismet/akismet.php'] );
    return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #Disable #update #notification #individual #plugins
ADD COMMENT
Topic
Name
6+7 =