Return to Snippet

Revision: 38002
at December 22, 2010 03:17 by mrwolfgraphics


Initial Code
<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); $loopcounter++; ?>

  // the loop stuffs

  <?php if ($loopcounter <= 1) { include (TEMPLATEPATH . '/ad.php'); } ?>

<?php endwhile; ?>

<?php else : ?>

<?php endif; ?>

Initial URL
http://wplift.com/22-handy-wordpress-code-snippets

Initial Description


Initial Title
Display an Advert after the first Post in Wordpress

Initial Tags


Initial Language
PHP