Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 3, 2021 17:59
Show Gist options
  • Save wpmu-authors/357037989065f89c15f049314e9831bf to your computer and use it in GitHub Desktop.
Save wpmu-authors/357037989065f89c15f049314e9831bf to your computer and use it in GitHub Desktop.
security.php
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
$plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : '';
check_admin_referer( "deactivate-plugin_{$plugin}" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment