如何在7个帖子后在Wordpress中插入特殊帖子?

时间:2011-10-11 20:40:23

标签: wordpress

我有这个代码在我的wordpress主题中的7个帖子之后插入我的侧栏,问题是这个代码每隔7个帖子放置侧栏,我只想让它出现一次。

 <?php $postnum++; if($postnum%7 == 0) { ?>
   <div class="post-single nolink">
      <?php get_sidebar(); ?>
          </div>  
 <?php } ?>

1 个答案:

答案 0 :(得分:0)

您不必使用模数运算符。只需使用:

<?php $postnum++; if($postnum == 7) { ?>
   <div class="post-single nolink">
      <?php get_sidebar(); ?>
          </div>  
 <?php } ?>