Skip to content

Instantly share code, notes, and snippets.

@abrightclearweb
Created March 23, 2018 11:32
Show Gist options
  • Save abrightclearweb/4623fb979c4036699fbd0498051e9e98 to your computer and use it in GitHub Desktop.
Save abrightclearweb/4623fb979c4036699fbd0498051e9e98 to your computer and use it in GitHub Desktop.
Queries on wp_options table to find and remove plugin data
// Replace pluginname with the plugin you have removed
select * from wp_options where option_name like "%pluginname%";
delete from wp_options where option_name like "%pluginname%";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment