我试图阻止将密码字段自动添加到Theme My Login注册表单。
查看主题我的登录/theme-my-login/modules/custom-passwords/custom-passwords.php
文件,我可以看到password_fields
函数已添加到大约第38行的register_form
操作中。例如:
add_action( 'register_form', array( &$this, 'password_fields' ) );
我尝试使用以下内容删除该操作,但它似乎无法正常工作。
remove_action( 'register_form', array( Theme_My_Login_Custom_Passwords, 'password_fields' ) );
谁能看到我出错的地方?