Skip to content

Instantly share code, notes, and snippets.

@arioch1984
Created June 17, 2015 11:02
Show Gist options
  • Save arioch1984/96ddb0fd6a40272fb7ba to your computer and use it in GitHub Desktop.
Save arioch1984/96ddb0fd6a40272fb7ba to your computer and use it in GitHub Desktop.
WP: disable plugin update messages #wp_disable_plugin_update
<?php
//Disable plugin update message
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