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.
我的 wordpress 页面上有一个注销链接。
这是代码:
echo '<a href="http://mydomain.com/wp-login.php?action=logout&redirect_to='.urlencode($url_home).'&_wpnonce=a2b834fa87">Logout</a>';
当我单击注销时,它仍然提示我是否确定要注销,并且在注销后它会进入登录页面。
我怎样才能让它退出并转到 index.php ?
为什么不使用内置的 Wordpress 功能:
<a href="<?php echo wp_logout_url( get_bloginfo('url') ); ?>&_wpnonce=a2b834fa87">Logout</a>