Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1105948

    jpartin1976
    Participant

    I am trying to find out where to place the google site verification tag to verify my site with Google. It says to put it in the header between the header tags….but with the X theme — I don’t see any of that in my “Theme header”. Help please…. How can I find the actual html to place my meta tag?

    #1106235

    Friech
    Moderator

    Hi There,

    Thanks for writing in! Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

    Then add this on your child theme’s functions.php file.

    add_action('wp_head','my_verification');
    function my_verification () { ?>
    
    <!-- verification code here -->
    
    <?php }

    Replace the <!-- verification code here --> with your actual code.

    Hope it helps, Cheers!