I have 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: