Manage cookies that are used for advertising, such as ad personalization, remarketing, and ad effectiveness analysis.
2.14.1.2.2. Deactivate plugins in WordPress
Deactivating plugins can be useful if there are problems with the site and you cannot access its admin panel.
Control panel
Rename directories
- Go to the
wp-content/pluginssubdirectory. - Rename the plugin directories that you want to deactivate (to deactivate all plugins, rename the
pluginsdirectory itself).
To activate the plugins, simply revert their directories to their previous names.
Database query
- In the site configuration file, check the name of the database to which it is connected.
- Open database in phpMyAdmin.
- Execute SQL query (instead of
wp_, use your database table prefix if it is different):UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
Deactivated plugins can be activated in the usual way via the WordPress admin panel.