Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1269607

    I need to add a Google Search Console Code there but it doesn’t appear to exist. I am using Enfold Child and can only see functions and style

    #1269776

    Hey samanthashea,

    You can add the code in the functions.php file like this:

    
    function add_ga_code(){
    ?>
    	<script>
    //your code here
    
    	</script> 
    <?php
    }
    add_action('wp_head', 'add_ga_code');
    

    Best regards,
    Victoria

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.