Skip to content

Instantly share code, notes, and snippets.

@fearlex
Created March 11, 2019 20:33
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 fearlex/fec756ad76227c9b961f775e57e1a910 to your computer and use it in GitHub Desktop.
Save fearlex/fec756ad76227c9b961f775e57e1a910 to your computer and use it in GitHub Desktop.
Wordpress/Woocommerce Cleanups
##-- Delete All Transients
DELETE FROM `wp_options` WHERE `option_name` LIKE '%_transient_%';
##-- Remove any WooCommerce wc_sessions from your database.
DELETE FROM wp_options
WHERE option_name LIKE '_wc_session_%' OR option_name LIKE '_wc_session_expires_%';
##-- Remove any transients set by WooCommerce from your database.
DELETE FROM wp_options
WHERE option_name LIKE '_transient_wc_%' OR option_name LIKE '_transient_timeout_wc_%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment