Skip to content

Instantly share code, notes, and snippets.

@webprogramacion
Created April 21, 2018 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webprogramacion/109b637be99c9b675f2e1bfdea15e505 to your computer and use it in GitHub Desktop.
Save webprogramacion/109b637be99c9b675f2e1bfdea15e505 to your computer and use it in GitHub Desktop.
Código necesario para redirigir al usuario después de cerrar sesión de WordPress
add_action('wp_logout','cerrar_sesion');
function cerrar_sesion()
{
wp_redirect("https://pagina a la que queramos redirigir...");
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment