woogc/disable_sso
This filter has been deprecated.
Name: woogc/disable_sso
Type: Filter
Arguments: $is_disabled
The filter is being used to disable Single Sign-On functionality. Single Sign-On (SSO) is a property of login on all sites in a MultiSite environment, using a single/unique login procedure. This works independently if other sites use different domains, subdomains or subdirectories structure.
add_filter( 'woogc/disable_sso', 'WooGC_Disable_SSO'); function WooGC_Disable_SSO ( $status ) { return TRUE; }
The code should be placed inside a php file on wp-content/mu-plugins folder.