Auctionads Wordpress targeting trick
12. Apr 2007 | 8 Comments
Many of you are now using Auctionads on your sites, however since you can only input the keywords you want to target & the javascript code isn’t contextual it can be difficult to target the right ads across your site.
If you’re using Wordpress however, there’s a few tricks you can use to help make ads more relevant to the in post content. Obviously the more targeted your ads are to the content of the post the more likely you are to get a conversion.
One of the tricks I use on a few Wordpress blogs is to target the ads to the theme of the category the post is in. So for example if I used Auctionads on an Ipod blog & one of the categories was called “Ipod Skins” I can easily target that keyword by using a dynamic category insertion string from Wordpress.
auctionads_ad_kw = “”;
This the the code that allows you to add which keywords to target. You may want to target ipods:
auctionads_ad_kw = “ipods”;
However maybe not all sections of your blog are about ipods, right? Lets say I make a post in the affiliate marketing category of this blog, I can dynamically insert the words “affiliate marketing” into the keyword string, thus targeting very specific ads:
auctionads_ad_kw = “<?php foreach((get_the_category()) as $cat) { echo $cat->cat_name . ‘ ‘; } ?>”;
This will return the category name into the field & you’ll not only increase your clickthroughs but your earnings too
8 Comments on "Auctionads Wordpress targeting trick"
Nappy Hair
13. Apr 2007, 4:22 am
i was wondering that same thing also this weekend. this is a great tip.
Andy Beard
13. Apr 2007, 10:01 am
Ajay on Wordpress published a version of this code some time ago that uses Simpletags or UTW to feed multiple keywords on a per post level.
One of the problems at launch was that the keywords were being used randomly rather than in priority.
I have a plugin hacked together that allows you to do contextual ads but as it uses part of the Chitika plugin (well actually most of it) and that plugin doesn’t have a clear license, I can’t redistribute the code.
CPA Affiliates
19. Apr 2007, 2:34 am
Nice snippet of code for those using WP.
bunni
28. Apr 2007, 9:24 am
This just gives me a parse error.
Nick Halstead
05. May 2007, 7:56 am
I have been working on a system to allow auctionad$ to give dynamic results, using PHP ive got a system where the system adapts what is shown based upon if users click on particular types of adverts, have a read - http://blog.assembleron.com/2007/05/04/how-to-make-auctionad-dynamic-with-php/
Hope its useful to someone,
Nick
i was wondering that same thing also this weekend. this is a great tip.
Ajay on Wordpress published a version of this code some time ago that uses Simpletags or UTW to feed multiple keywords on a per post level.
One of the problems at launch was that the keywords were being used randomly rather than in priority.
I have a plugin hacked together that allows you to do contextual ads but as it uses part of the Chitika plugin (well actually most of it) and that plugin doesn’t have a clear license, I can’t redistribute the code.
Nice snippet of code for those using WP.
This just gives me a parse error.
I have been working on a system to allow auctionad$ to give dynamic results, using PHP ive got a system where the system adapts what is shown based upon if users click on particular types of adverts, have a read - http://blog.assembleron.com/2007/05/04/how-to-make-auctionad-dynamic-with-php/
Hope its useful to someone,
Nick
Add a Comment
Supporters of the Cause
Popular Articles
- Link Building Guide for 2008
- Become a Digg Power User in 48 Hours
- $800 a Day with Yahoo Answers
- Gmail Power Usage
- How to Work from Home - Efficiently
- Dominate Ebay Affiliate Program
- Making Money with Local Niche Directories
- Quick way to Make money with CPA Offers
- Diggproof & Speed up Wordpress
- Make Money with Clickbank & Articles
Recent Posts
- VPS Optimization Guide
- 13 Smokin Tips to Increase Adwords CTR
- Niche Domination - Solid Strategy or One Trick Pony?
- Hack Alert (remv.php) - Upgrade to Wordpress 2.7
- Coupon Affiliates are stealing from you
- $1k+ a month with a Celebrity Website
- Making Money with Internationalised Products
- How to Upgrade to an Adwords My Client Center
- Dealing with Dodgy Merchants & Affliate Networks
- DDOS Attack
Affiliate Tools
Guides / Example Sites
- Link Building Guide
- Discount Vouchers - Pligg
- Credit Cards - Wordpress

Enjoy this post? Get the RSS Feed

















Nice tip. I’m surprised I haven’t seen an Auction Ads Wordpress Plugin out yet - do you know if anyone’s put one together?