I need to paste the Google meta tag script into my site’s home page. It should go in the <head> section, before the first <body> section. Can you direct me on how to do that? Thanks!
Hey Tad30!
Add this to the bottom of your functions.php file.
add_action( 'wp_head', 'enfold_customization_add_header_script' );
function enfold_customization_add_header_script() {
?>
your script goes here
<?php
}
And replace the text with your script.
Regards,
Elliott
Hey!
Functions.php is located in the root of your theme folder, but please use a child theme if you are going to edit the core files: http://kriesi.at/documentation/enfold/portfolio-item/create-a-child-theme/
Regards,
Rikard