我有这个代码在我的wordpress主题中的7个帖子之后插入我的侧栏,问题是这个代码每隔7个帖子放置侧栏,我只想让它出现一次。
<?php $postnum++; if($postnum%7 == 0) { ?>
<div class="post-single nolink">
<?php get_sidebar(); ?>
</div>
<?php } ?>
答案 0 :(得分:0)
您不必使用模数运算符。只需使用:
<?php $postnum++; if($postnum == 7) { ?>
<div class="post-single nolink">
<?php get_sidebar(); ?>
</div>
<?php } ?>