Wordpress visit all external links on page when I click any 1 link. -
i have developed affiliate website in wordpress. site contains list of godaddy domains in table. links affiliated links in table.
problem when click on link table in wordpress website @ cj.com counts link click in list.
for eg. have 405 domains in list of table, when click on 1 link @ cj.com shows 406 clicks.
i have tried on fresh wordpress installation.
here few example of source code:
<table class="footable" cellspacing="0" cellpadding="0"> <thead> <tr> <th width="93px">domain name</th> <th width="50">price</th> <th width="93">auction end time</th> <th width="93">sale type</th> </tr> </thead> <tbody> <tr> <td><a href="http://www.anrdoezrs.net/click-8186857-10497118-1476294381000?url=https://in.auctions.godaddy.com/trpitemlisting.aspx?miid=205703908" target="new">x1r.biz</a></td> <td>$5</td> <td>11-04-16 1:52</td> <td>buy now</td> </tr> </tbody> </table>
adjust href target attribute target="_blank"
, it's smart add rel="nofollow"
google not index godaddy pages under name.
code:
<table class="footable" cellspacing="0" cellpadding="0"> <thead> <tr> <th width="93px">domain name</th> <th width="50">price</th> <th width="93">auction end time</th> <th width="93">sale type</th> </tr> </thead> <tbody> <tr> <td><a href="http://www.anrdoezrs.net/click-8186857-10497118-1476294381000?url=https://in.auctions.godaddy.com/trpitemlisting.aspx?miid=205703908" target="_blank" rel="nofollow">x1r.biz</a></td> <td>$5</td> <td>11-04-16 1:52</td> <td>buy now</td> </tr> </tbody>
Comments
Post a Comment