Title: studioelle's Replies | WordPress.org

---

# studioelle

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [child theme and favicon coding problem](https://wordpress.org/support/topic/child-theme-and-favicon-coding-problem/)
 *  [studioelle](https://wordpress.org/support/users/studioelle/)
 * (@studioelle)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/child-theme-and-favicon-coding-problem/#post-2249010)
 * I know this is six months too late, but I just went through the same tutorial
   and found the problem. So, for any future people with the same issue, here is
   the answer:
 * Add “get_stylesheet_directory_uri()” to your link so it is pulling the favicon.
   ico from your child theme directory. You want it there and not in your parent
   theme folder. It’s best to keep everything separated.
 * So, the code that worked for me is:
 *     ```
       function favicon_link() {
           echo '<link rel="shortcut icon" type="image/x-icon" href="'.get_stylesheet_directory_uri().'/favicon.ico" />' . "\n";
       }
       add_action('wp_head', 'favicon_link');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Basic Google Maps Placemarks] [Plugin: Basic Google Maps Placemarks] Is there a way to list entries below map?](https://wordpress.org/support/topic/plugin-basic-google-maps-placemarks-is-there-a-way-to-list-entries-below-map/)
 *  Thread Starter [studioelle](https://wordpress.org/support/users/studioelle/)
 * (@studioelle)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-basic-google-maps-placemarks-is-there-a-way-to-list-entries-below-map/#post-2457879)
 * Oops…thanks!

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