Skip to content

Instantly share code, notes, and snippets.

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 Njengah/d0a85c9d271e0d399b0bd9001d73123e to your computer and use it in GitHub Desktop.
Save Njengah/d0a85c9d271e0d399b0bd9001d73123e to your computer and use it in GitHub Desktop.
Remove WordPress plugin notification for a specific plugin
<?php
/**
* Remove Plugin Update Notifications for Specific Plugin : example-plugin-folder/example-plugin-base-file.php
*/
function njengah_remove_plugin_update_notifications($value) {
if ( isset( $value ) && is_object( $value ) ) {
unset( $value->response[ 'example-plugin-folder/example-plugin-base-file.php' ] );
}
return $value;
}
add_filter( 'site_transient_update_plugins', 'njengah_remove_plugin_update_notifications' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment