Let me try to clarify what I’m trying to do.
I’m setting up an adsense share.
In my users (lets call them authors) profiles I have a field where they enter their adsense publisher id. (pub-xxxxxxxxxxxxxxxx) I then use this field and insert it into two ads using
<script type="text/javascript"><!--
google_ad_client = "<?php the_author_meta('google_id');?>";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "F4F1E9";
google_color_bg = "F4F1E9";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "CC0000";
//--></script>
<script type="text/javascript"
src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
This gives them 100% ownership of these two ads.
This is great if they already have an Adsense account. However, I would like them to be able to apply for an Adsense account thru my domain. (As opposed to say Blogger.com)
But google wants you to have a website.
Now to verify a site Google webmaster central gives you two options.
1.) upload a file
2.) Add a meta tag to the top of your page. like this,
<meta name="google-site-verification" content="455_h5u_f2h_6sw_b21_66i_v8e_5ml_554_1k2" />
I have a second field in the author profile called google-site-verification
where they can enter the 455_h5u_f2h_6sw_b21_66i_v8e_5ml_554_1k2
So what I want to do is post the user field google-site-verification
into here in the header
<meta name="google-site-verification" content="POSTHERE" />
so that google will consider their profile and every page authored by them as their website.