Question: If you activate or update a plugin and it breaks your site so that you cannot manage it via wp-admin, how can you disable the plugin?

  1. all of these answers
  2. Access the WordPress install via WP-CLI. Run the following command: wp plugin deactivate offending-plugin.
  3. Access site files via FTP and navigate to /wp-content/plugins/. Delete the folder of the plugin that you would like to disable or simply rename it.
  4. Use phpMyAdmin to change the wp_options table's active_plugins option value to a:0:{}.

Answer: The correct answer of the above question is Option A:all of these answers