php wordpress:单击更新任何用户时激发函数

8fq7wneg  于 2022-11-21  发布在  PHP
关注(0)|答案(1)|浏览(132)

相关:Wordpress, function after 'update user' is clicked
我有一个PHP脚本,需要运行每当任何用户配置文件在WordPress更新:

function profile_update() {

    echo "<h2>fired on profile update</h2>";
// do stuff
    add_action( 'edit_user_profile_update', 'profile_update' );

但是当用户更新时它不会触发。发生了什么?这个钩子应该完成这项工作...
期望操作钩子工作,不清楚哪里出了问题。

fykwrbwg

fykwrbwg1#

Please Use below hook for function when update user button is clicked

    function profile_update() {
     echo "<h2>fired on profile update</h2>";
     // do stuff
    }
    add_action('show_user_profile','profile_update');
    add_action('edit_user_profile','profile_update');

相关问题