Fix syntax error in example openid-connect-generic-login-button-text hook (#113)

isekai
Thijs Kinkhorst 6 years ago committed by Jonathan Daggerhart
parent 0b51e9c1e5
commit d45ab06e3d

@ -118,7 +118,7 @@ Modify the login button text. Default value is `__( 'Login with OpenID Connect'
Provides 1 argument: the current login button text. Provides 1 argument: the current login button text.
``` ```
add_filter('openid-connect-generic-login-button-text, function( $text ) { add_filter('openid-connect-generic-login-button-text', function( $text ) {
$text = __('Login to my super cool IDP server'); $text = __('Login to my super cool IDP server');
return $text; return $text;

Loading…
Cancel
Save