July 10, 201016 yr I can customise wp and do stuff with the wp functions, but adding custom php is past me I have a template'd post which shows 2 posts on the homepage, using the query posts function. I want to add an advert in between the 2 ads. I have tried a couple of options on google but none work, so need your help guys. I know I will have to do a count++ then do an if statement but I cannot get the right structure, Any ideas?
July 10, 201016 yr Author 'in between the 2 ads.' do you mean between 2 posts? Yup, damn it, example Post advert post
July 10, 201016 yr Maybe something like that? <?php if (have_posts()) : ?> <?php $post = $posts[0]; $c=0;?> <?php while (have_posts()) : the_post(); ?> <?php $c++; if( $c == 1) :?> <?php the_title(); ?> <?php the_excerpt(); ?> <!-- inser your advert here --> <?php else :?> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php endif;?> <?php endwhile; ?>
Create an account or sign in to comment