每三个帖子之间的广告

时间:2015-10-11 10:37:33

标签: wordpress

我有一个wordpress安装,我想在我制作的每三个帖子之间广告一些广告,我该怎么做?

我发现下面的代码如下,但在主题/代码中我放在哪里?

<?php $counter =0; ?>
<?php while (have_posts()) : the_post(); ?><!-- begin of loop -->
<?php
  ++$counter;
  if($counter == 3) {
    $postclass = 'class="third-post"';
    $counter = 0;
  } else { $postclass = ''; }
?>
<div id="post-<?php the_ID(); ?>" <?php echo $postclass; ?>>
<?php the_content('Read the rest of this entry »'); ?>
</div>
<?php endwhile; ?><!-- end of loop -->

1 个答案:

答案 0 :(得分:1)

你想在每3个帖子后添加一个广告,你需要在下面的代码添加你的代码之后在主题文件名single.php中添加上面的代码。

    <?php while ( have_posts() ) : the_post(); ?>
        <?php get_template_part( 'templates/content/content', 'single' ); ?>
        <?php
            // If comments are open or we have at least one comment, load up the comment template
            if ( comments_open() || get_comments_number() ) :
                comments_template();
            endif;
        ?>`