Title: buzzerboycom's Replies | WordPress.org

---

# buzzerboycom

  [  ](https://wordpress.org/support/users/buzzerboycom/)

 *   [Profile](https://wordpress.org/support/users/buzzerboycom/)
 *   [Topics Started](https://wordpress.org/support/users/buzzerboycom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/buzzerboycom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/buzzerboycom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/buzzerboycom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/buzzerboycom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/buzzerboycom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Two Factor] custom login page support](https://wordpress.org/support/topic/custom-login-page-support-2/)
 *  [buzzerboycom](https://wordpress.org/support/users/buzzerboycom/)
 * (@buzzerboycom)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/custom-login-page-support-2/#post-14558934)
 * I had the same question, but I managed to figure it out. Basically, if you get
   any plugin that allows you to customize you /wp-admin/ login page. It will also
   change the screen for the 2FA code too.
 * I kept it simple, and just changed the logo by adding the following code into
   my child-themes’ functions.php. Then, I uploaded an 82×82 square logo in my child
   theme’s root folder called rentermade-square-small.png
 * //basically adding an action to put my logo instead of the wordpress logo
    function
   custom_login_logo() { echo ‘<style type=”text/css”>h1 a { background: url(‘.get_stylesheet_directory_uri().’/
   rentermade-square-small.png) 99% 99% no-repeat !important; }</style>’;
 * }
    add_action(‘login_head’, ‘custom_login_logo’);`

Viewing 1 replies (of 1 total)