📜  wordpress 注销重定向到主页 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:24.500000             🧑  作者: Mango

代码示例1
// On functions.php of your child theme or in a code snippet:
add_action('wp_logout','auto_redirect_after_logout');
function auto_redirect_after_logout(){
  wp_redirect( home_url() );
  exit();
}