Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DuckDivers/eb663a24000ebda04f41951130deb50d to your computer and use it in GitHub Desktop.
Save DuckDivers/eb663a24000ebda04f41951130deb50d to your computer and use it in GitHub Desktop.
Prevent Plugin from Updating
<?php
// Add to Plugin main file
add_filter('site_transient_update_plugins', 'dd_remove_update_nag');
function dd_remove_update_nag($value) {
unset($value->response[ plugin_basename(__FILE__) ]);
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment