I want to remove all the links from my network login page (“Register”,”Lost your password” and “Back to site”) how can i do that?
3 Answers
I am not sure there is a way to suppress all these links, but you can hide them with CSS:
add_action( 'login_head', 'hide_login_nav' );
function hide_login_nav()
{
?><style>#nav,#backtoblog{display:none}</style><?php
}