Remove all links from WordPress Login page using CSS
How to remove all links from WordPress Login page using CSS?
We will discuss over the topic of removing all links i.e “Register”,”Lost your password” and “Back to site” from WordPress Login page shown below
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
}
Result will display after removing