Installing Adsense

Hi!

So I just signed up for AdSense and Google is asking me to paste a code between the and tags

And I have no idea how to do this?

I did download and activate a child theme on mysite but I’m not sure where to go from there? Where specifically do I place this code?

Any help is much appreciated!

Thanks,
Bree!

Hi There,

Please add the following code under functions.php file locates in your child theme:

add_action( 'wp_head', 'add_head_script' );
function add_head_script(){
	?>
	<!-- Your adsense scripts will go here -->
	<?php
}

Hope it helps :slight_smile:

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