2017-07-07 84 views

回答

3

YES,就可以实现这一点。

规则1: WordPress需要用户名。我们必须提供一个用户名。

规则2:不要编辑WordPress核心代码。

我们可以通过隐藏用户名字段,获取电子邮件并将其存储为用户名来实现此目的。

步骤-1:删除用户名文本框

add_action('login_head', function(){ 
?> 
<style> 
    #registerform > p:first-child{ 
     display:none; 
    } 
</style> 

<script type="text/javascript" src="<?php echo site_url('/wp-includes/js/jquery/jquery.js'); ?>"></script> 
<script type="text/javascript"> 
    jQuery(document).ready(function($){ 
     $('#registerform > p:first-child').css('display', 'none'); 
    }); 
</script> 
<?php 
}); 

步骤2:删除用户名错误

//Remove error for username, only show error for email only. 
add_filter('registration_errors', function($wp_error, $sanitized_user_login, $user_email){ 
if(isset($wp_error->errors['empty_username'])){ 
    unset($wp_error->errors['empty_username']); 
} 

if(isset($wp_error->errors['username_exists'])){ 
    unset($wp_error->errors['username_exists']); 
} 
return $wp_error; 
}, 10, 3); 

步骤3:操纵背景注册功能。

add_action('login_form_register', function(){ 
if(isset($_POST['user_login']) && isset($_POST['user_email']) && !empty($_POST['user_email'])){ 
    $_POST['user_login'] = $_POST['user_email']; 
} 
}); 

主题的functions.php的文件把上面的代码。