当订单状态更改为自定义状态时,WooCommerce不发送电子邮件

时间:2019-01-09 19:17:22

标签: php wordpress woocommerce hook-woocommerce

我使用set.seed(42) x <- sample(x, size = 10000000, replace = TRUE) library(microbenchmark) microbenchmark(trunc(x / 10) * 10, floor(x / 10) * 10, x%/%10*10) #> Unit: milliseconds #> expr min lq mean median uq #> trunc(x/10) * 10 55.89856 58.57783 66.08508 65.62727 71.74459 #> floor(x/10) * 10 95.50139 99.18817 108.17770 108.10694 113.86548 #> x%/%10 * 10 143.65839 150.77401 157.42086 158.56745 161.84987 #> max neval #> 95.49897 100 #> 147.47947 100 #> 188.56060 100 创建了新的订单状态,并使用register_post_status()钩子将其添加到了WC订单状态列表中

现在,我正在构建一个插件,以在订单更改为此自定义状态时发送电子邮件,称为生产:

wc_order_statuses

但是什么也没发生。

0 个答案:

没有答案