Skip to content

Instantly share code, notes, and snippets.

@runezero
Created May 25, 2022 13:32
Show Gist options
  • Select an option

  • Save runezero/7d9ace6234efc14efbac16fdffc11e7a to your computer and use it in GitHub Desktop.

Select an option

Save runezero/7d9ace6234efc14efbac16fdffc11e7a to your computer and use it in GitHub Desktop.
[Delete orders] Delete WooCommerce orders older than 6 months executable #woocommerce
add_action('admin_init', function(){
$args = array(
'date_created' => '<' . ( time() - (3600*24*31*6) ),
'limit' => 1000
);
$orders = wc_get_orders( $args );
foreach ($orders AS $order) {
wp_delete_post($order->get_id(), true);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment