• 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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    Thread Starter zimzum

    (@zimzum)

    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!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘is it possible to insert an ad under a single page post?’ is closed to new replies.