也想出现在这里?联系我们

通过logout_url实现wordpress后台登出跳转到指定页面

2023.10.14 wordpress教程
  • 文章介绍
  • 升级版本
  • 评价&建议

要通过logout_url在WordPress后台登出后跳转到指定页面,您可以使用以下代码示例:

function custom_logout_redirect( $logout_url, $redirect ) {
    // 修改跳转链接为您想要的页面URL
    $redirect = 'https://example.com/customlogoutpage';
    return str_replace( $logout_url, $logout_url . '&redirect_to=' . urlencode( $redirect ), $logout_url );
}
add_filter( 'logout_url', 'custom_logout_redirect', 10, 2 );

将这段代码添加到您的主题的functions.php文件中,或者使用一个自定义插件来添加它。这段代码将拦截WordPress后台的登出URL,并将重定向参数设置为您指定的页面URL。

确保将 'https://example.com/customlogoutpage' 替换为您要跳转到的实际页面的URL。这样,当用户从WordPress后台注销时,他们将被重定向到指定的页面。

有用0
  • 2023.10.14初次和大家见面了!

等待您对该主题的建议

发表评论

还能输入240个字

Hi, 欢迎加入Wordpress技术交流群,带你装逼带你飞!

我要入群
也想出现在这里?联系我们
wordpress加速

我来推荐一个更牛逼的给你看看?

  • 猛戳我吧