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.
我在注销页面上注销重定向用户时遇到问题。 我对模板页面进行了编码,wp_safe_redirect(wp_logout_url())但它只显示注销时出现错误。Wordpress 询问我是否确定要注销。 是否可以在 wordpress 上创建注销页面,当用户转到此页面时,它会自动注销用户。
wp_safe_redirect(wp_logout_url())
您可以logout直接调用:
logout
wp_logout(); wp_redirect( wp_login_url() ); // then redirect him to login url
<a href="<?php echo wp_logout_url("URL OF login page"); ?>">Logout</a>