|
Most of my php pages are setup to call the page title, meta description, and any other variables at the top of the content page.
So typical page would be like..
[code:1:b43b1cea86]$page_title="Page Title";
$meta_desc="This is meta description";
$var="Some other var";
include"header.php";
<!-- Content Start -->
Content
<!-- Content Stop -->
include"footer.php";[/code:1:b43b1cea86]
This way I have total control of all pages without having to mess with each individual page. Anyway - my point is the adsense uses whatever is rendered to the page... if you notice it's almost always the last thing to load so it sees whatever is shown on the page.
I've got my adsense in the header.php page with no problems.
|