Last active
December 15, 2015 14:29
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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