You appear to be a bot. Output may be restricted
Description
Error message that is displayed when the current site is in an identity crisis and SSO can not be used.
Usage
$string = Jetpack_SSO_Notices::sso_not_allowed_in_staging( $message );
Parameters
- $message
- ( mixed ) required –
Returns
string
Source
File name: jetpack/modules/sso/class.jetpack-sso-notices.php
Lines:
1 to 8 of 8
public static function sso_not_allowed_in_staging( $message ) { $error = esc_html__( 'Logging in with WordPress.com is disabled for sites that are in staging mode.', 'jetpack' ); $message .= sprintf( '<p class="message">%s</p>', $error ); return $message; }