Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在登录按钮和密码字段之间的登录页面中插入一个链接,可以吗?如果可能的话,我需要钩住哪个动作?我只想在登录提交按钮和密码字段之间插入一个 DIV 和一个链接
有一个名为 login_form 的钩子放置在正确的位置
add_action( 'login_form', function() { echo 'howdy ho!'; } );