开发者

how do you insert a special post in Wordpress after 7 posts?

I hav开发者_C百科e this code which inserts my side bar after 7 posts in my wordpress theme, the issue is that this code places the sidebar every 7 posts, I just want it to appear once.

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


You don't have to use modulus operator then. Simply use:

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜