Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active May 27, 2017 04:08
Show Gist options
  • Save nielslange/94eee7281a0a48cbfb6cf67d4e240acb to your computer and use it in GitHub Desktop.
Save nielslange/94eee7281a0a48cbfb6cf67d4e240acb to your computer and use it in GitHub Desktop.
Disable plugin updates
<?php
//* Disable plugin updates
add_filter( 'site_transient_update_plugins', 'nl_disable_plugin_updates' );
function nl_disable_plugin_updates( $value ) {
unset( $value->response['woocommerce/woocommerce.php'] );
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment