The main page shows all post titles with excerpt, I want to modify the theme in order to show ads on main page after 2-3 post titles. How can I do this?
I was having a look at an online tutorial which mentioned about change the have_post() function. In which file it’s located I didn’t get it. The tutorial mentioned steps as followed:
Find :
<php if (have _posts ()) : ?>
<php while (have_posts()) : the_post(); ?>
Replace:
<?php $postcounter = 1; if (have_posts()) : ?>
<?php while (have_posts()) : $postcounter = $postcounter + 1; the_post(); ?>
<?php if(4 == $postcounter) { echo ' <div id="adsbetween"> <center> YOUR_ADSENSE_CODE </center> </div> ' ; } ?>
And where is the the content()
function I didn’t find it either.I’m using the free attitude theme.