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?

有帮助吗?

解决方案

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' ); 
许可以下: CC-BY-SA归因
scroll top