Skip to content

Instantly share code, notes, and snippets.

@jprieton
Last active August 29, 2015 14:01
Show Gist options
  • Save jprieton/4c4661986d19154843db to your computer and use it in GitHub Desktop.
Save jprieton/4c4661986d19154843db to your computer and use it in GitHub Desktop.
Cierra la sesión del usuario en WordPress y redirige al home
<?php
function custom_logout() {
$logout = (bool) filter_input(INPUT_GET, 'logout');
if ($logout) {
wp_logout();
echo '<script type="text/javascript">window.location = "' . home_url() . '";</script>';
}
}
// run it before the headers and cookies are sent
add_action('after_setup_theme', 'custom_logout');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment