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
Sams Teach Yourself WordPress 3 in 10 Minutes NEW
| US $16.01 End Date: Thursday Feb-09-2012 2:39:09 PST Buy It Now for only: US $16.01 Buy it now | Add to watch list |
SEO Secrets for WordPress Blogs - 21 Videos
| US $6.95 End Date: Thursday Feb-09-2012 3:18:12 PST Buy It Now for only: US $6.95 Buy it now | Add to watch list |
WordPress: Visual QuickStart Guide (2nd Revised edi...
| US $25.11 End Date: Thursday Feb-09-2012 4:07:14 PST Buy It Now for only: US $25.11 Buy it now | Add to watch list |
Using Wordpress by Tris Hussey w/CD (2011)
| US $12.00 (0 Bid) End Date: Thursday Feb-09-2012 4:16:37 PST Bid now | Add to watch list |
CHRISTMAS NICHE WORDPRESS BLOG TURNKEY WEBSITE -AMAZON
| US $39.95 End Date: Thursday Feb-09-2012 6:18:07 PST Buy It Now for only: US $39.95 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!