Categories: Tips & Tricks

Adding a external file after the first post

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 { & }.

Web Master

Hi, I am Miguel, I bought this site in 2009. So I now run or manage the site. Please visit my new website or follow me on twitter @W3i.

Recent Posts

Working on a new theme called WordCult

So I have been really busy, and haven't been able to put up a new…

2 hours ago

How to: Open external links in a new window

Over the weekend, I attended WordCamp Denver, and I was asked by John Hawkins how…

10 hours ago

A Comprehensive Guide to the Best AI Writing Tools: Expert Recommendations.

This article provides a comprehensive overview of the top 10 AI writing tools as voted…

22 hours ago

WordCamp Denver 2009 Boradcast

Well hello to everyone, hope you are going to have a great weekend! I am…

1 day ago

How Is Blockchain Revamping Data Security & Immutability?

Blockchain technology, a decentralized ledger system enabling secure and tamper-proof transactions between peers without intermediaries,…

2 days ago

Fixing plugins not compatible with hybrid 0.4.2

Hey everyone, as you may have noticed I have a running on the site. While…

2 days ago