WordPress会员注销后怎么跳转到指定页面?

WordPress会员注销后怎么跳转到指定页面?如果你是WordPress主题开发者,这是个很有用的技巧。默认情况下, 用户登出后WordPress会重定向到网站的登录页面,我们可以通过添加下面的代码到当前主题的functions.php模板文件,用户登出后跳转到指定页面或者链接地址。

1、注销后重定向到首页。

  1. add_action('wp_logout','auto_redirect_after_logout');function auto_redirect_after_logout(){  wp_redirect( home_url() );  exit();}  

2、注销后重定向到指定链接。

  1. add_action('wp_logout','auto_redirect_external_after_logout');function auto_redirect_external_after_logout(){  wp_redirect( 'http://xxx.com' );//这里修改为你的指定路径  exit();}  
未经允许不得转载:便宜VPS网 » WordPress会员注销后怎么跳转到指定页面?