Best way to add favicon, Google Webmaster meta etc - changing header.php? Or is there any better option?
Thanks again
Best way to add favicon, Google Webmaster meta etc - changing header.php? Or is there any better option?
Thanks again
you can change header.php, but if you are customizing with a child theme you can use hooks.like this (in functions.php):
function headerstuff() { ?>
<!-- add html stuff here -->
<?php
}
add_action( 'wp_head', 'headerstuff' );
Should this go to parent or child theme functions.php?
Thanks
child theme
You must log in to post.