Title: Customize Logo
Last modified: August 21, 2016

---

# Customize Logo

 *  Resolved [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * (@dlocc)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/)
 * WordPress is great and all but I’d like to display my client’s logo rather than
   the WordPress one. How can I do this using this password protected plugin? This
   would be great to know, thanks!
 * [http://wordpress.org/plugins/password-protected/](http://wordpress.org/plugins/password-protected/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [Ben Huson](https://wordpress.org/support/users/husobj/)
 * (@husobj)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/#post-4070236)
 * Password Protected works well with the [Login Logo plugin](http://wordpress.org/plugins/login-logo/)
   which will allow you to replace the logo.
 *  Thread Starter [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * (@dlocc)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/#post-4070237)
 * Thanks for the fast response. What about if we don’t want to use a plugin for
   this… is there an action we can hook into? I’m assuming that’s what this plugin
   is doing.
 *  [Ben Huson](https://wordpress.org/support/users/husobj/)
 * (@husobj)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/#post-4070257)
 * The filters you need are:
 * 1. ‘[login_headerurl](http://codex.wordpress.org/Plugin_API/Filter_Reference/login_headerurl)‘
   to change the URL the logo links to.
 * 2. ‘login_headertitle’ to change the logo text.
 * 3. The logo image is actually a background image on the H1 link tag so you’ll
   need the ‘[login_head](http://codex.wordpress.org/Plugin_API/Action_Reference/login_head)‘
   action to output some styles to restyle it using `.login h1 a {}`
 *  Thread Starter [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * (@dlocc)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/#post-4070263)
 * That’s exactly what I needed to know. Thanks!
 *  Thread Starter [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * (@dlocc)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/#post-4070265)
 * Hmm, I’ve tested with this bit of code and while the logo is CSS is loading fine
   for the normal WordPress login it doesn’t appear to be loading at all for the
   login screen. Any tips?
 *     ```
       //* custom CSS for admin logo and layout
       function rkv_custom_stylez() {
           wp_enqueue_style('admin_head', plugins_url( 'css/admin.css', __FILE__));
       }
       add_action('login_head', 'rkv_custom_stylez', 10);
       ```
   
 *  [Ben Huson](https://wordpress.org/support/users/husobj/)
 * (@husobj)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/#post-4070272)
 * Sorry, you also need to use the ‘password_protected_login_head’ like ‘login_head’
   for the Password Protected login page

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Customize Logo’ is closed to new replies.

 * ![](https://ps.w.org/password-protected/assets/icon-128x128.gif?rev=2824217)
 * [Password Protected — Lock Entire Site, Pages, Posts, Categories, and Partial Content](https://wordpress.org/plugins/password-protected/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/password-protected/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/password-protected/)
 * [Active Topics](https://wordpress.org/support/plugin/password-protected/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/password-protected/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/password-protected/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [Ben Huson](https://wordpress.org/support/users/husobj/)
 * Last activity: [12 years, 9 months ago](https://wordpress.org/support/topic/customize-logo/#post-4070272)
 * Status: resolved