Title: replace wordpress logo with custom logo
Last modified: August 21, 2016

---

# replace wordpress logo with custom logo

 *  Resolved [marisaporter](https://wordpress.org/support/users/marisqa/)
 * (@marisqa)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/replace-wordpress-logo-with-custom-logo/)
 * Hi – I need to replace the wordpress logo with a custom logo, such as my theme
   already does in the login page, or the plugin theme my login does.
 * But this plugin seems to override all those settings.
 * It’s really important that the register/approve message doesn’t say WordPress,
   but shows the company logo instead.
 * Marisa
 * [http://wordpress.org/extend/plugins/new-user-approve/](http://wordpress.org/extend/plugins/new-user-approve/)

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

 *  Thread Starter [marisaporter](https://wordpress.org/support/users/marisqa/)
 * (@marisqa)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/replace-wordpress-logo-with-custom-logo/#post-3669145)
 * Hi place this code in your functions file if you’re having this issue:
 *     ```
       function change_login_page_url( $url ) {
           $link_url='http://marisaporter.com/drugfreepaauction';
           return $link_url;
       }
       add_filter( 'login_headerurl', 'change_login_page_url' );
   
       function my_custom_login_logo() {
           echo '<style type="text/css">
               h1 a { background-image:url('.get_bloginfo('template_url').'/images/dfpa_logo_color_transparent_fordemo1.png) !important; background-size: 150px auto !important; }
           </style>';
       }
   
       add_action('login_head', 'my_custom_login_logo');
       ```
   
 * _[Please post code & markup between backticks or use the code button. Your posted
   code may now have been permanently damaged by the forum’s parser.]_
 *  Thread Starter [marisaporter](https://wordpress.org/support/users/marisqa/)
 * (@marisqa)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/replace-wordpress-logo-with-custom-logo/#post-3669146)
 * Replace my image file and my website with yours.

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

The topic ‘replace wordpress logo with custom logo’ is closed to new replies.

 * ![](https://ps.w.org/new-user-approve/assets/icon-128x128.gif?rev=2544141)
 * [New User Approve](https://wordpress.org/plugins/new-user-approve/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/new-user-approve/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/new-user-approve/)
 * [Active Topics](https://wordpress.org/support/plugin/new-user-approve/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/new-user-approve/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/new-user-approve/reviews/)

## Tags

 * [company logo](https://wordpress.org/support/topic-tag/company-logo/)
 * [wordpress logo](https://wordpress.org/support/topic-tag/wordpress-logo/)

 * 2 replies
 * 1 participant
 * Last reply from: [marisaporter](https://wordpress.org/support/users/marisqa/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/replace-wordpress-logo-with-custom-logo/#post-3669146)
 * Status: resolved