Skip to content

Instantly share code, notes, and snippets.

@siddharthashok
Created August 26, 2015 06:18
Show Gist options
  • Save siddharthashok/682be99f403b245f5f56 to your computer and use it in GitHub Desktop.
Save siddharthashok/682be99f403b245f5f56 to your computer and use it in GitHub Desktop.
//remove update notice for forked plugins
function remove_update_notifications($value) {
if ( isset( $value ) && is_object( $value ) ) {
unset($value->response[ plugin_basename(__FILE__) ]);
}
return $value;
}
add_filter('site_transient_update_plugins', 'remove_update_notifications');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment