Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Created April 7, 2017 13:03
Show Gist options
  • Save bigdigital/58eb64971ce7dadf30178919e0e46f9b to your computer and use it in GitHub Desktop.
Save bigdigital/58eb64971ce7dadf30178919e0e46f9b to your computer and use it in GitHub Desktop.
Cnanging Logout Link The7
add_filter( 'logout_url', 'custom_logout_url' );
function custom_logout_url( $default )
{
// set your URL here
return !current_user_can('administrator') ? 'http://example.com/custom' : $default;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment