你可以尝试使用下面的代码,简单讲就是 JS 实现注册无需邮件地址验证。
add_action('user_profile_update_errors', 'my_user_profile_update_errors', 10, 3);
function my_user_profile_update_errors($errors, $update, $user) {
$errors->remove('empty_email');
}
add_action('user_new_form', 'my_user_new_form', 10, 1);
add_action('show_user_profile', 'my_user_new_form', 10, 1);
add_action('edit_user_profile', 'my_user_new_form', 10, 1);
function my_user_new_form($form_type) {
?>
<script type="text/javascript">
jQuery('#email').closest('tr').removeClass('form-required').find('.description').remove();
<?php if (isset($form_type) && $form_type === 'add-new-user') : ?>
jQuery ('#send_user_notification') .removeAttr('checked');
<?php endif; ?>
</script>
<?php
}