开发者

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

开发者 https://www.devze.com 2023-04-12 03:09 出处:网络
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.

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

精彩评论

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

关注公众号