Hello, i have looked at the tutorial here on ho to add a favicon using a child theme but i'm still confused as what to do.
I tried adding this to the header.php of Thematic under wp_head:
function childtheme_favicon() { ?>
<link rel="shortcut icon" href="<?php echo bloginfo('stylesheet_directory') ?>/images/favicon.ico">
<?php }
add_action('wp_head', 'childtheme_favicon');
I added this but it returned syntax errors i couldn't reach the end of. Do you add this to header.php of the main theme or do you add it somewhere on the child theme?
Thanks for any help :)