Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active December 15, 2015 14:29
Show Gist options
  • Save jasperf/5275145 to your computer and use it in GitHub Desktop.
Save jasperf/5275145 to your computer and use it in GitHub Desktop.
Disable all plugins in WordPress using PHP Admin or a MySQL Client (included query to show all active plugins)
// To find all active plugins
SELECT * FROM wp_options WHERE option_name = 'active_plugins';
// Then remove all code indicating which plugins are active and save again
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment