Display Ads Only On Selected WordPress Posts
Every blog is a little different and has it’s own unique requirements. On some blogs we may want to place an ad on every post, on others we may not. A good example is this blog. There are a few posts that I make where I feel an ad is useful and lends itself to have a relevant contextual ad placed on the post.
There is a very simple way to handle this issue.
Yes, there are plugins available that handle all kinds of issues with ads, however, I just wanted an easy way of dealing with it, so here is what I came up with.
Two lines of code and using Custom Fields does the trick,
First I wrap my ads on the single page with this code.
<?php
if (get_post_meta($post->ID, ‘ads’, true)) {
?>
AD CODE HERE
<?php
}
?>
This will cause ads to only show when there is a custom field named “ads” with a value of anything but 0. And once you have inserted the custom field you never have to add it again, just apply a value, and since this is a simple boolean expression, any value except 0 will cause the ads to display.
Examples:
No Ad : Weekly CyberCoder Tweets for 2008-11-30
With Ad : Online Residual Income
You could go the other way and have the default show the ad, or include a couple statements to change the ad location, color or anything else you could think of. This is just a simple solution for a specific need and I hope it helps someone.
If you want more options using basically the same technique I would highly recommend this tutorial, How To Automatically Disable Ads On Selected Posts In WordPress.
Hire Me
Related Posts
Written by: David Cooley - December 1st, 2008
Wordpress Shopping Links
GETTING STARTED WITH WORDPRESS - TODD KELSEY (PAPERBACK) NEW
| US $24.48 End Date: Tuesday Feb-07-2012 2:23:40 PST Buy It Now for only: US $24.48 Buy it now | Add to watch list |
SMARTPHONES INFORMATION NIICHE WORDPRESS BLOG WITH AMAZON/ADSENSE/CLICKBANK
| US $69.00 End Date: Tuesday Feb-07-2012 3:36:34 PST Buy It Now for only: US $69.00 Buy it now | Add to watch list |
Using Wordpress by Tris Hussey (2011, Other, Mixed media product)
| US $17.81 End Date: Tuesday Feb-07-2012 3:48:49 PST Buy It Now for only: US $17.81 Buy it now | Add to watch list |
50 Adsense Ready Professional Niche Wordpress Templates
| US $14.99 End Date: Tuesday Feb-07-2012 4:30:10 PST Buy It Now for only: US $14.99 Buy it now | Add to watch list |
NICE WORDPRESS AUTOBLOG 1 SIX PACK ABS BLOG WITH AMAZON, CLICKBANK, ADSENSE
| US $69.00 End Date: Tuesday Feb-07-2012 4:59:11 PST Buy It Now for only: US $69.00 Buy it now | Add to watch list |
Posted in Blogging, Programming
Tags: Blogging, Wordpress, Wordpress Custom Fields, Wordpress How To, Wordpress Programming








Great article David. This is very helpful.
Fred, glad you found it helpful!