Hello.
i have to delete my adsense code from just 1 specific wordpress page (not post).
my site template options allows only to avoid ad banner in the homepage.
anyone could help me please?
thanks in advance
Hello.
i have to delete my adsense code from just 1 specific wordpress page (not post).
my site template options allows only to avoid ad banner in the homepage.
anyone could help me please?
thanks in advance
you can do something like this in your wordpress page.php file:
if (!is_page('about')) {
<!-- insert adsense code here ->
}
so, the code above will work on every page but the about page.
You can see more about this http://codex.wordpress.org/Conditional_Tags
go to html code editor of your site and fine adsense code than deleted
This topic has been closed to new replies.