在Wordpress中禁用多个插件更新

How can I use the below code in my wp-config to disable multiple plugins?

For example, this code will stop plugin.php from updating but how can I disable multiple in an array so that plugin.php, plugin1.php and plugin2.php are also disabled.

/* Function which remove Plugin Update Notices */
function disable_plugin_updates( $value ) {
   unset( $value->response['plugin/plugin.php'] );
   return $value;
}
add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' );
/* Function which remove Plugin Update Notices */
function disable_plugin_updates( $values ) {

   foreach($values as $value) {
       unset( $value->response['plugin/plugin.php'] );
   }
   return;
}
add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' );