bux23
2/5/2017 - 9:02 PM

wp logout redirect

wp logout redirect

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