所有分类
  • 所有分类

  • Warning: Attempt to read property "name" on null in /www/wwwroot/loudigu.com/wp-content/themes/modown/header.php on line 289

wordpress注册页取消邮箱的方法

我们在wordpress网站搭建中,为了降低注册难度,增加手机验证,需要取消邮箱

通过下面方法即可实现:

把下面代码加到主题函数:function.php 中

//WordPress组织免邮箱注册功能实现
add_action('register_form','cwp_remove_remail_on_registration_screen');
functioncwp_remove_remail_on_registration_screen(){
?>
<style>
/*隐藏电邮输入栏*/
#registerform>p:first-child+p{display:none;}
/*隐藏这句话:"密码将通过电子邮件发送给您。"*/
#reg_passmail{display:none;}
</style>
<scripttype="text/javascript"src="https://www.wpzt.net/<?phpechosite_url('/wp-includes/js/jquery/jquery.js');?>"></script>
<scripttype="text/javascript">
/*为隐藏的邮件输入栏根据用户输入的用户名和当前的域名自动输入邮箱*/
jQuery(function(){
jQuery('#user_login').change(function(){
jQuery('#user_email').val(jQuery('#user_login').val()+'@'+window.location.host);
})
});
</script>
<?php
}

原文链接:https://loudigu.com/wordpress%e6%b3%a8%e5%86%8c%e9%a1%b5%e5%8f%96%e6%b6%88%e9%82%ae%e7%ae%b1%e7%9a%84%e6%96%b9%e6%b3%95.html,转载请注明出处~~~
0
广告位招租
本站愿景:打造一个更专业的更完善的WP华语交流互助平台,助力WP华语生态蓬勃发展
显示验证码
没有账号?注册  忘记密码?