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
AD WordPress Blog Publishing System Logo Iron Patch
US $0.99 (0 Bid)
End Date: Tuesday Mar-16-2010 7:53:27 PDT
Bid now | Add to watch list

Advanced Wordpress Training Tutorial Videos on CD
US $7.00
End Date: Tuesday Mar-16-2010 12:25:45 PDT
Buy It Now for only: US $7.00
Buy it now | Add to watch list

Install SEO Wordpress Video Tutorials on CD
US $7.00
End Date: Tuesday Mar-16-2010 12:32:01 PDT
Buy It Now for only: US $7.00
Buy it now | Add to watch list

10 ADVANCED Wordpress Video Tutorials for Better BLOGS
US $5.95
End Date: Tuesday Mar-16-2010 12:36:05 PDT
Buy It Now for only: US $5.95
Buy it now | Add to watch list

Dominate WORDPRESS Step-by-Step Video Tutorials
US $30.00
End Date: Tuesday Mar-16-2010 17:16:30 PDT
Buy It Now for only: US $30.00
Buy it 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