我能够将“丢失密码表单”更改为:// Change htmlfunction html_lostpassword_form(){ $html = ''; // <input> etc.}// Read filefunction my_echo_files(){ $files = ' <link rel="stylesheet" href="' . get_bloginfo( 'template_directory' ) . '/css/lostpassword.css" /> <script src="' . get_bloginfo( 'template_directory' ) . '/js/lostpassword.js"></script> '; echo $files;}// Change the lost password formfunction my_password_form() { // Change html $content = ob_get_contents(); $content = html_lostpassword_form(); ob_get_clean(); echo $content; // Read file my_echo_files(); }add_action( 'lostpassword_form', 'my_password_form' );当我想更改“丢失密码表单”时lostpassword_form很有用,那么出现“重置密码表”该怎么办呢?使用resetpassword_form或是不可能的rp_form。现在,“丢失密码表单”是“example.com/wp-login?action=lostpassword”中显示的页面,“重置密码表单”是“example.com/wp-login?action=rp”中显示的页面.
- 1 回答
- 0 关注
- 188 浏览
添加回答
举报
0/150
提交
取消