How do I add Youtube verification code to my site's home page?

I am trying to get my site verified with Youtube and have to add a meta tag to my home page.

These are the instructions:

Copy the meta tag below, and paste it into your site’s home page. It should go in the section, before the first section.

How do I do this? My home page is built in Cornerstone.

Thanks,

Amy

Hi Amy,

Please login through FTP and add this code to the child theme’s functions.php file:

add_action('wp_head', 'add_header_code');

function add_header_code(){
?>
    <meta name="google-site-verification" content="LKtsxpgm_Xwfl64InX8Z3sGk8oe7Qqkp_gjBsZkSrA8" />
<?php
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.