Guest User

Untitled

a guest
Jun 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. // Disable update notification for individual plugin (current)
  3. function filter_plugin_updates($value) {
  4. if ($value) {
  5. unset($value->response[plugin_basename(__FILE__)]);
  6. }
  7. return $value;
  8. }
  9. add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );
  10. ?>
Add Comment
Please, Sign In to add comment