我需要执行下一步:
为了重定向我的注销,我将下一个代码放入函数中。php
function out_home(){
wp_redirect(home_url());
exit();
}
add_action("wp_logout","out_home");
在我的标题中。php,要更改登录中我的URL的值,请执行以下操作:
$URL_POSTLOGIN = add_query_arg(array(),$wp->request);
function login_go_home($URL_POSTLOGIN){
wp_redirect($URL_POSTLOGIN);
exit();
}
add_action("wp_login","login_go_home");
也许不是最好的解决方案,但在我的情况下,其他代码会失败。