I would like to insert a unique affiliate ad into each of my single page posts if possible, that would go rite under submit comment. Is there a plugin to achieve this or a way to do this in my themes template?
I would like to insert a unique affiliate ad into each of my single page posts if possible, that would go rite under submit comment. Is there a plugin to achieve this or a way to do this in my themes template?
Hi,
- Open index.php file of your wordpress theme.
- Search the code:
<?php endwhile; ?>
Add this code before that:
<?php if(!$show_ads){ ?>
Your Advertisement Code hereā¦.
<?php $show_ads = 1; } ?>
show_ads=1 means shows the ads after the first post only you can increase it upto your requirement.
Thanks,
Shane G.
Thanks shane,
That works great, but I only wanted it to show up when someone click on the the comment tab, to post a commnet, not on the home page with all the posts.
Do you know of a way I can do that?
Thanks again!
You must log in to post.