wickywills
4/1/2020 - 7:24 AM

Empty cron in wp_options

WP cron hooks are stored in the options table in an option named cron. WooCommerce likes to fill this over time until it is too big to write.

While not perhaps optimal, what I do is just empty it:

UPDATE wp_2_options SET option_value = '' WHERE option_name = 'cron'