How might you display a Google ad after the first post or anything you like? It is very simple. You just need to add the variable $loopcounter
in the Loop. If the $loopcounter
is less than or equal to 1, then include your option. Check out the code:
<?php if (have_posts()) : while (have_posts()) : the_post(); $loopcounter++; ?> // your loop <?php if ($loopcounter <= 1) { include (STYLESHEETPATH . '/you-file.php'); } ?> <?php endwhile; ?> <?php else : ?> <?php endif; ?>
Pretty simple huh. Well in the $loopcounter
line, you may change the include to point to any file or maybe a custom widget like so:
<?php if ($loopcounter <= 1) { dynamic_sidebar( 'Plus Post' ); } ?>
Or use your code directly in between the {
& }
.
So I have been really busy, and haven't been able to put up a new…
Over the weekend, I attended WordCamp Denver, and I was asked by John Hawkins how…
This article provides a comprehensive overview of the top 10 AI writing tools as voted…
Well hello to everyone, hope you are going to have a great weekend! I am…
Blockchain technology, a decentralized ledger system enabling secure and tamper-proof transactions between peers without intermediaries,…
Hey everyone, as you may have noticed I have a running on the site. While…