Title: Logo &#8211; external link
Last modified: February 7, 2017

---

# Logo – external link

 *  Resolved [Mankov](https://wordpress.org/support/users/mankov/)
 * (@mankov)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/logo-external-link/)
 * Hello,
 * how can we link the logo to an external website? Currently it links to the main-
   page.
 * [http://fs5.directupload.net/images/170207/rq3e8enq.png](http://fs5.directupload.net/images/170207/rq3e8enq.png)
    -  This topic was modified 9 years, 5 months ago by [Mankov](https://wordpress.org/support/users/mankov/).
    -  This topic was modified 9 years, 5 months ago by [Mankov](https://wordpress.org/support/users/mankov/).

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

 *  Thread Starter [Mankov](https://wordpress.org/support/users/mankov/)
 * (@mankov)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/logo-external-link/#post-8755698)
 * If you click on the zerfie lite theme’s logo, it refers to the main-page of the
   site. How can we install an external link on the logo. So by clicking on the 
   logo it should refer to an external website. Must be somewhere in the .php-documents,
   but we don’t know exactly where.
    -  This reply was modified 9 years, 5 months ago by [Mankov](https://wordpress.org/support/users/mankov/).
    -  This reply was modified 9 years, 5 months ago by [Mankov](https://wordpress.org/support/users/mankov/).
    -  This reply was modified 9 years, 5 months ago by [Mankov](https://wordpress.org/support/users/mankov/).
    -  This reply was modified 9 years, 5 months ago by [Mankov](https://wordpress.org/support/users/mankov/).
 *  Thread Starter [Mankov](https://wordpress.org/support/users/mankov/)
 * (@mankov)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/logo-external-link/#post-8777136)
 * Can you tell us in which php-document and phrase we have to paste your code?
 *  [mdshak](https://wordpress.org/support/users/mdshak/)
 * (@mdshak)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/logo-external-link/#post-8937977)
 * Hi,
    Please paste the code at functions.php of child theme. Make sure to use 
   a child theme to make these changes: [http://docs.themeisle.com/article/14-how-to-create-a-child-theme](http://docs.themeisle.com/article/14-how-to-create-a-child-theme).
 *     ```
       add_filter( 'get_custom_logo', 'mdshak_url' );
       function mdshak_url() {
           $custom_logo_id = get_theme_mod( 'custom_logo' );
           $html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>',
                   'INSERT URL HERE', // DONT FORGET TO CHANGE THE URL
                   wp_get_attachment_image( $custom_logo_id, 'full', false, array(
                       'class'    => 'custom-logo',
                   ) )
               );
           return $html;   
       } 
       ```
   
 * Thanks
    Mohammad

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

The topic ‘Logo – external link’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/zerif-lite/1.8.5.49/screenshot.
   png)
 * Zerif Lite
 * [Support Threads](https://wordpress.org/support/theme/zerif-lite/)
 * [Active Topics](https://wordpress.org/support/theme/zerif-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/zerif-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/zerif-lite/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [mdshak](https://wordpress.org/support/users/mdshak/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/logo-external-link/#post-8937977)
 * Status: resolved