How to disable WordPress plugin from database?

You can disable all WordPress plugin at once from a single MySQL query. This will be faster to disable all plugins through command line. You need to disable plugins if you want upgrade the WordPress site. Following MySQL command will helpful for you. UPDATE wp_options SET option_value = ” WHERE option_name = ‘active_plugins’; Above commandContinue reading “How to disable WordPress plugin from database?”

How to change WordPress theme directly from database?

Sometime you want to change WordPress theme without login in site backend. For example If you upgrade wordpress site and after complete upgradation of site you found that site is stop working. You may see just a blank page instead of newly updated site. This situation may happen if your old theme not support theContinue reading “How to change WordPress theme directly from database?”