Question

I am working on a new project with Wordpress using the Jetpack plugin. Jetpack add the option to Login using Wordpress Account as the default method of login, if not, then you have to click on a link under to login as traditionally was done with user name and password.

Is there a way to flip this.. User name and password be the default and login with Wordpress.com account be the optional second screen?

Était-ce utile?

La solution

Edit the functions.php in your active theme folder. For me it is /wp-content/themes/twentytwelve/functions.php.

Add this line to the end of the file:

add_filter( 'jetpack_sso_default_to_sso_login', '__return_false' ); 
Licencié sous: CC-BY-SA avec attribution
Non affilié à wordpress.stackexchange
scroll top