Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created September 28, 2022 20:32
Show Gist options
  • Save wpmu-authors/840c17a6ff1daafbc487480d43934e91 to your computer and use it in GitHub Desktop.
Save wpmu-authors/840c17a6ff1daafbc487480d43934e91 to your computer and use it in GitHub Desktop.
<?php
//Here's my custom CSS that removes the back link in a function
function my_login_page_remove_back_to_link() { ?>
<style type="text/css">
body.login div#login p#backtoblog {
display: none;
}
</style>
<?php }
//This loads the function above on the login page
add_action( 'login_enqueue_scripts', 'my_login_page_remove_back_to_link' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment