“WordPress wp_logout_url Redirect” Kode Jawaban

Logout WordPress Redirect ke rumah

// 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();
}
gtamborero

WordPress wp_logout_url Redirect

add_action('wp_logout','auto_redirect_after_logout');

function auto_redirect_after_logout(){
  wp_safe_redirect( home_url() );
  exit;
}
Code Lover

Jawaban yang mirip dengan “WordPress wp_logout_url Redirect”

Pertanyaan yang mirip dengan “WordPress wp_logout_url Redirect”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya