投稿TOP1記事の後ろだけ広告を入れる

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
 
if ( have_posts () ) :
while (have_posts()) : the_post(); $counter++;
?>       
  
<?php include("d_roop_box.php") ?>
 
 
<?php if ($counter <= 1) {
 
 
include("d_ad_1_2.php");
 
} ?>
 
 
 
<!----閉じループタグ----->
<?php
    endwhile;
endif;
?>
<!---------------リセットクエリ--------------------------------------------->
<?php wp_reset_query(); ?>