WooCommerce - 重命名并使用重命名的订单状态

时间:2016-09-11 01:25:26

标签: php wordpress woocommerce status orders

我已使用此代码

将订单状态“已完成”重命名为“已付款”
function wc_renaming_order_status( $order_statuses ) {
foreach ( $order_statuses as $key => $status ) {
    $new_order_statuses[ $key ] = $status;
    if ( 'wc-completed' === $key ) {
        $order_statuses['wc-completed'] = _x( 'Paid', 'Order status', 'woocommerce' );
    }
}
return $order_statuses;
}
add_filter( 'wc_order_statuses', 'wc_renaming_order_status' );

我的问题是我做了一个包含所有订单列表的页面模板:

<?php   
while ( $loop->have_posts() ) : $loop->the_post();
$order_id = $loop->post->ID;
$order = new WC_Order($order_id);
?>
<tr>
<td style="text-align:left;"><?php echo $order->get_order_number(); ?></td>
<td style="text-align:left;"><?php echo $order->billing_first_name; ?> 
<?php echo $order->billing_last_name; ?></td>
<td style="text-align:left;"><?php echo $order->billing_company; ?></td>
<td style="text-align:left;"><?php echo $order->status; ?></td>
</tr>
<?php endwhile; ?>

$order->status 仍然会返回 'completed' ,而不是 'paid'

我该如何解决这个问题?

由于

1 个答案:

答案 0 :(得分:2)

这是正常的,您可以使用一些额外的代码来创建一个显示自定义重命名状态的函数:

function custom_status($order){
    if($order->status == 'completed')
        return _x( 'Paid', 'woocommerce' );
    else
        return $order->status;
}

此代码位于活动子主题(或主题)的function.php文件中或任何插件文件中。

模板页面中,您将以这种方式使用它:

<?php   
while ( $loop->have_posts() ) : $loop->the_post();
$order_id = $loop->post->ID;
$order = new WC_Order($order_id);
?>
<tr>
<td style="text-align:left;"><?php echo $order->get_order_number(); ?></td>
<td style="text-align:left;"><?php echo $order->billing_first_name; ?> 
<?php echo $order->billing_last_name; ?></td>
<td style="text-align:left;"><?php echo $order->billing_company; ?></td>
<td style="text-align:left;"><?php echo custom_status($order); ?></td>
</tr>

<?php endwhile; ?>

此代码经过测试且有效。

参考:Renaming WooCommerce Order Status