WordPress,单击“更新用户”后起作用

时间:2018-06-26 11:35:03

标签: php wordpress

网站管理员编辑用户的某些详细信息后,我想使用wp_mail()。 当管理员完成“编辑用户”页面上的详细信息更新并单击“更新用户”按钮时,我要执行PHP代码,例如-

if (some checkings) { wp_mail() }

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用配置文件更新功能

此挂钩可让您在用户的数据库信息更新后立即访问其数据。

<?php
     add_action( 'profile_update', 'my_profile_update', 10, 2 );
     function my_profile_update( $user_id, $old_user_data ) {
            // Your email function here
        }
    ?>

More info here