我想将wordpress woo-commerce订单操作处理orde 重命名为调查。我在wordpress方面不擅长。有人可以告诉我如何实现这一目标。我试过google它只允许我添加客户订单操作。
答案 0 :(得分:0)
如果您只想更改显示名称,则必须使用
wc_order_statuses
过滤器。
以下是代码:
function wh_process_to_survey($order_statuses)
{
foreach ($order_statuses as $key => $status)
{
if ('wc-processing' === $key)
{
$order_statuses[$key] = _x('Survey', 'Order status', 'woocommerce');
}
}
return $order_statuses;
}
add_filter('wc_order_statuses', 'wh_process_to_survey', 10, 1);
代码进入您的活动子主题(或主题)的functions.php
文件。或者也可以在任何插件php文件中。
代码已经过测试并且有效。
希望这有帮助!