Skip to content

Instantly share code, notes, and snippets.

@moorscode
Created July 12, 2019 11:36
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 moorscode/5555b3571b60f8e5a0cdf8394577f10c to your computer and use it in GitHub Desktop.
Save moorscode/5555b3571b60f8e5a0cdf8394577f10c to your computer and use it in GitHub Desktop.
Prevent plugin deletion
<?php
add_action( 'admin_init' , function() {
add_filter( 'user_has_cap', function( $allcaps ) {
$allcaps['delete_plugins'] = false;
$allcaps['edit_plugins'] = false;
return $allcaps;
});
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment