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.

Related Posts


Written by: David Cooley - December 1st, 2008



Wordpress Shopping Links
30 Instant Wordpress Themes Blog CD
US $16.97
End Date: Thursday Sep-02-2010 12:22:22 PDT
Buy It Now for only: US $16.97
Buy it now | Add to watch list

Install WORDPRESS Money Making Secrets Video Course CD
US $0.99 (0 Bid)
End Date: Thursday Sep-02-2010 13:14:43 PDT
Buy It Now for only: US $1.49
Bid now | Buy it now | Add to watch list

Gigantic Wordpress Adsense Marketing Sales Kit w Videos
US $0.99 (0 Bid)
End Date: Thursday Sep-02-2010 13:16:15 PDT
Buy It Now for only: US $1.49
Bid now | Buy it now | Add to watch list

Building Wordpress blog VIDEO COURSE by Alex Flom
US $29.00
End Date: Thursday Sep-02-2010 13:46:12 PDT
Buy It Now for only: US $29.00
Buy it now | Add to watch list

Wordpress Theme Creator Software
US $0.99 (0 Bid)
End Date: Thursday Sep-02-2010 14:06:59 PDT
Bid now | Add to watch list

Posted in Blogging, Programming

Tags: , , , ,


Subscribe to this post comments, without commenting


2 Responses to “Display Ads Only On Selected WordPress Posts”

  1. Fred says:

    Great article David. This is very helpful.

  2. David Cooley says:

    Fred, glad you found it helpful!

Leave a Reply