Site logo

Archived topic

Customizing Login Page

3 replies · Started by Avi on April 26, 2022

Viewing posts 1–4 of 4

Hi,
I am using GP Premium's "Target" theme.
Looking for a little help!
I want to insert a page link on the login page.

https://pasteboard.co/HDVLui2fqf8B.jpg

Could you please advise me on how can I accomplish this without directly editing the wp-login.php file?

Best regards,
Avi

Hi Avi,

The available WordPress hooks are login_header and login_footer.

You may add a PHP code like this through Code Snippets or your functions.php file if you're using a child theme, but this will only place it under every Login elements:

add_action('login_footer',function(){
	echo '<div class="my-link-div"><a class="my-link" href="https://www.google.com">test</a></div>';
});

add_action('login_header',function(){
	echo '<style>
	.my-link-div{text-align:center;}
	</style>';
});

You may also try adding more CSS in the <style> CSS code above to customize the login page.

Otherwise, you would likely need to modify the file wp-login.php.

Hope this clarifies. :)

Hi Fernando,
Thanks for showing me the right way.
As always, your advices really help.
Let me close this ticket.

You’re welcome Avi! Glad to be of assistance! Feel free to reach out anytime you’ll need assistance with anything else. :)

This archived topic is closed to new replies.