wp logout redirect
////////////////////////////////////////////////////
/// LOGOUT REDIRECT HOMEPAGE
///////////////////////////////////////////////////
function logout_redirect_home(){
wp_safe_redirect(home_url());
exit;
}
add_action('wp_logout', 'logout_redirect_home');