【发布时间】:2015-06-29 15:29:36
【问题描述】:
我已使用以下功能向 woocommerce 添加了新的自定义订单状态。
// Register New Order Statuses
function wpex_wc_register_post_statuses() {
register_post_status( 'wc-custom-order-status', array(
'label' => _x( 'Shipping In Progress', 'WooCommerce Order status', 'text_domain' ),
'public' => true,
'exclude_from_search' => false,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => true,
'label_count' => _n_noop( 'Approved (%s)', 'Approved (%s)', 'text_domain' )
) );
}
add_filter( 'init', 'wpex_wc_register_post_statuses' );
// Add New Order Statuses to WooCommerce
function wpex_wc_add_order_statuses( $order_statuses ) {
$order_statuses['wc-custom-order-status'] = _x( 'Shipping In Progress', 'WooCommerce Order status', 'text_domain' );
return $order_statuses;
}
add_filter( 'wc_order_statuses', 'wpex_wc_add_order_statuses' );
每当我去编辑订单并将订单状态更改为新添加的自定义订单状态并单击保存订单按钮时。加载后订单状态自动变为Pending Order 不在新添加的自定义订单中...
如何克服这个问题...?
【问题讨论】:
标签: php wordpress function woocommerce