检索密码后,重定向至首页

时间:2013-12-22 作者:Daniel

我正在使用wordpress 3,8。

当用户访问/wp登录时。php?操作=丢失密码并单击“检索密码”

我想将它们重定向到/索引。php而不是登录窗口。

有可能吗?

当做

丹尼尔

1 个回复
SO网友:Pat J

使用lostpassword_redirect 过滤器:

add_filter( \'lostpassword_redirect\', \'wpse127373_lostpassword_redirect\' );
function wpse127373_lostpassword_redirect() {
    return home_url();  // use the home URL for your site
}
将此代码添加到活动主题的functions.php 文件,或者——如果希望它在主题更改中保持不变——将其添加到custom plugin.

参考文献Trac: lostpassword_redirect filter
  • Codex: home_url()
  • 结束

    相关推荐

    Disable domain redirect

    所需行为:http://www.situationware.com 应留在www.situationware.com, 无需注册。目前wordpress正在自动重定向到Amazon主机名ec2-107-22-241-162.compute-1.amazonaws.com, 如果我更新wp config,则请求用户注册。通过取消注释phpDOMAIN_CURRENT_SITE 我最终将循环重定向到http://situationware.com/wp-signup.php?new=situationware