0

当某些用户从 wordpress 的个人资料页面更改密码时,我想获取密码字符串(而不是哈希)。我怎样才能获得价值?任何想法?我正在尝试将 wordpress 与外部数据库集成,因此每次用户在 wordpress 网站上更新密码时它都会更新密码。外部站点上的密码哈希结构不同,因此我需要配置文件更新页面中的密码字符串。

4

1 回答 1

1
add_action( 'check_passwords','profilescreen', 10, 3);

function profilescreen($user,$pass1,$pass2){
//Do something here
}
于 2013-05-03T17:50:14.540 回答