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 {
& }
.
Hey, do you have a list a social bookmark links? Does it have a Twitter…
The WordPress plugin repository has over 54,000 plugins that enhance user experience by filling gaps…
We all want to read comments, especially if these comments praise us or show that…
Videos add life to blogs. It could make explaining things easier and deliver the message…
More information on Misspelled SEO Keywords If appropriately used, misspelled keywords can be worth gold.…
WordPress Backup is a Must! Creating WordPress Backup regularly is one good way to add maximum security…
View Comments