用户更新其电子邮件地址时的 WordPress 挂钩/事件/操作
当用户更新其电子邮件地址时是否会触发任何钩子/事件/操作/方法? 当用户更新其电子邮件地址时,我需要从我的插件中执行某些操作。 有没有办法在不改变 WordPress 核心的情况下从我的插件中检查这一点?
Is there any hook/event/action/method that fires when a user updates it's email address?
I need to do certain actions from my plugin when a user updates it's email address.
Is there a way to check for that from my plugin without altering Wordpress's core?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那里没有太多信息,但我认为最好的选择可能是编写自定义函数并使用 profile_update hook 用于将旧数据与新数据进行比较。如果当前电子邮件与旧电子邮件不同,您已经找到了解决方案。
编辑:链接到 WordPress 文档
There's not a lot of information out there, but I think your best bet might be writing a custom function and use the profile_update hook to compare old data with new. If the current email is different than the old, you've got your solution.
Edit: Link to WordPress' Documentation