在网上商店的后端中更改WooCommerce设置后, 我喜欢执行一个功能(以我为例),该功能向系统管理员发送电子邮件。
但是我不知道要使用哪个动作。 我尝试了Google的一些示例,但没有成功。 该函数未调用。
我尝试过:
class MyClass
{
$id = 'send_mail';
add_action( 'woocommerce_settings_save_' . $id , array($this, 'send_mail'));
....
....
}
public function send_mail()
{
....
Do stuff and send mail
....
return;
}
感谢您的答复。
我只是做了一个可行的更改。
add_action( 'woocommerce_settings_save_general', array($this, 'send_mail'));
add_action( 'woocommerce_settings_save_products', array($this, 'send_mail'));
.......
.......