Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save justingreerbbi/4d68b9823b65ed81ca1e627c0c3c35b4 to your computer and use it in GitHub Desktop.
Save justingreerbbi/4d68b9823b65ed81ca1e627c0c3c35b4 to your computer and use it in GitHub Desktop.
Auto SSO with WP OAuth Server and Single Sign On Simple Client
add_filter( 'template_redirect', 'auto_sso_init', 11 );
function auto_sso_init() {
if ( ! is_user_logged_in() ) {
wp_safe_redirect( site_url( '?auth=sso' ) );
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment