wordpress注册页取消邮箱的方法
我们在wordpress网站搭建中,为了降低注册难度,增加手机验证,需要取消邮箱
通过下面方法即可实现:
把下面代码加到主题函数:function.php 中
//WordPress组织免邮箱注册功能实现 add_action('register_form','cwp_remove_remail_on_registration_screen'); function cwp_remove_remail_on_registration_screen(){ ?> <style> /*隐藏电邮输入栏*/ #registerform>p:first-child+p{display:none;} /*隐藏这句话:"密码将通过电子邮件发送给您。"*/ #reg_passmail{display:none;} </style> <script type="text/javascript" src="https://www.wpzt.net/<?php echo site_url('/wp-includes/js/jquery/jquery.js');?>"></script> <script type="text/javascript"> /*为隐藏的邮件输入栏根据用户输入的用户名和当前的域名自动输入邮箱*/ jQuery(function(){ jQuery('#user_login').change(function(){ jQuery('#user_email').val(jQuery('#user_login').val()+'@'+window.location.host); }) }); </script> <?php }
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END