admin管理员组文章数量:1389869
I am using profile_update
hook for user update but it is working only for my own profile. I need hook which works for all users including my own profile.
Which hook I should use for this purpose ?
Here how I am using this in my theme's functions.php.
add_action( 'profile_update', 'my_profile_update', 10, 2 );
function my_profile_update( $user_id, $old_user_data ) {
if(is_admin()){
}
}
本文标签: User update hook
版权声明:本文标题:User update hook 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744710110a2621078.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论