Skip to content

Instantly share code, notes, and snippets.

@hugomedeiros
Last active June 22, 2017 10:38
Show Gist options
  • Select an option

  • Save hugomedeiros/2883f90d2474808f23fe60ea80377e3a to your computer and use it in GitHub Desktop.

Select an option

Save hugomedeiros/2883f90d2474808f23fe60ea80377e3a to your computer and use it in GitHub Desktop.
Update WooCommerce Order Status
<?php
function update_order_status($status){
$order = new WC_Order($order_id);
if (!empty($order)) {
// 'processing', 'completed', 'on-hold', 'canceled', other(slug)
$order->update_status( '$status' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment