Skip to content

Instantly share code, notes, and snippets.

@aschweigert
Last active February 3, 2016 02:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aschweigert/c6fc7db56c2e777ff34a to your computer and use it in GitHub Desktop.
Save aschweigert/c6fc7db56c2e777ff34a to your computer and use it in GitHub Desktop.
//least destructive, just update ones set to the old default
UPDATE wp_43_postmeta
SET meta_value = 'none'
WHERE meta_key = 'custom_sidebar' AND meta_value = 'sidebar-single'
//OR set them all to "none"
UPDATE wp_43_postmeta
SET meta_value = 'none'
WHERE meta_key = 'custom_sidebar'
//OR just delete them all
DELETE FROM wp_43_postmeta WHERE meta_key = 'custom_sidebar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment