📜  woocommerce php 客户重置密码长度 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:05.390000             🧑  作者: Mango

代码示例1
function my_profile_update( $user_id ) {

    if ( ! is_admin() ) {
       update_user_meta($user_id, 'user_pass2', (string) $_POST['password_1']);
    }
    // password changed...
}
add_action( 'profile_update', 'my_profile_update' );