Guest User

Untitled

a guest
Feb 14th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /* Function which remove Plugin Update Notices */
  2. function disable_plugin_updates( $value ) {
  3. unset( $value->response['plugin/plugin.php'] );
  4. return $value;
  5. }
  6. add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' );
Add Comment
Please, Sign In to add comment