Skip to content

Instantly share code, notes, and snippets.

@bitkidd
Last active February 15, 2016 00:30
Show Gist options
  • Save bitkidd/5ba0811c2a8ca09d71b4 to your computer and use it in GitHub Desktop.
Save bitkidd/5ba0811c2a8ca09d71b4 to your computer and use it in GitHub Desktop.
Discourage wordpress plugin updates
<?php
// Add this to your functions.php
// Discourage wordpress plugin updates
function no_plugin_updates($value) {
unset($value->response[ plugin_basename('pluginfolder/pluginfile.php') ]);
return $value;
}
add_filter('site_transient_update_plugins', 'no_plugin_updates');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment