Starting with version 1.3, the script tries to find links to eBay buyer guides. The script searches the http://reviews.ebay.com/ for guides, strips out the link url, link title and link description and then exposes this data to the theme through the $guides variable. The script also redirects the links to the buyer guides back through the script in order to get credit for any click thrus. The links are rewritten to use the ebay rover links and should look like any other link generated by the Custom Url Link Generator tool.
Certain keywords may not contain any buyer guides. In this case, no links are displayed.
To include the guides in your theme, place the following code in the theme where you want the buyer guide links to appear.
<?php if (count($guides)>0) { ?>
<h2><?php echo $keyword;?> Buyer Guides</h2>
<ul>
<?php foreach ($guides as $guide) { ?>
<li><a href="<?php echo $guide['url'];?>"><?php echo $guide['title'];?></a> - <?php echo $guide['desc'];?>
<? } ?>
</ul>
<?php } ?>