Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created December 11, 2019 15:15
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 tommcfarlin/030f2d13f8aa4792a54dd01559c27f4a to your computer and use it in GitHub Desktop.
Save tommcfarlin/030f2d13f8aa4792a54dd01559c27f4a to your computer and use it in GitHub Desktop.
[WordPress] Deactivating WordPress Plugins with SQL
SELECT * FROM wp_options WHERE option_name = 'active_plugins';
UPDATE wp_options SET option_value = 'a:0:{}' WHERE option_name = 'active_plugins';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment