本文整理匯總了PHP中wc_is_order_status函數的典型用法代碼示例。如果您正苦於以下問題:PHP wc_is_order_status函數的具體用法?PHP wc_is_order_status怎麽用?PHP wc_is_order_status使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了wc_is_order_status函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: mark_order_status
/**
* Mark an order with a status
*/
public static function mark_order_status()
{
if (current_user_can('edit_shop_orders') && check_admin_referer('woocommerce-mark-order-status')) {
$status = sanitize_text_field($_GET['status']);
$order_id = absint($_GET['order_id']);
if (wc_is_order_status('wc-' . $status) && $order_id) {
$order = wc_get_order($order_id);
$order->update_status($status);
do_action('woocommerce_order_edit_status', $order_id, $status);
}
}
wp_safe_redirect(wp_get_referer() ? wp_get_referer() : admin_url('edit.php?post_type=shop_order'));
die;
}
示例2: test_wc_is_order_status
/**
* Test wc_is_order_status().
*
* @since 2.3.0
*/
public function test_wc_is_order_status()
{
$this->assertEquals(true, wc_is_order_status('wc-pending'));
$this->assertEquals(false, wc_is_order_status('wc-another-status'));
}