Skip to content

Instantly share code, notes, and snippets.

@tdrayson
Created October 27, 2020 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdrayson/0026987efbec764bb2a91cd8627a2437 to your computer and use it in GitHub Desktop.
Save tdrayson/0026987efbec764bb2a91cd8627a2437 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