I'm building a site in Anchor CMS and am loving it, all except for the forums being down and their documentation being so light.
I'd like to change the amount of posts that appear on my post page. The documentation states that I just need to change that figure in the config... but where is the config, or where in the config?
<?php if(has_posts()): ?> // adding numbers to has_post('n') does nothing
<?php $i = 0; while(posts()): $i++; ?> // adding numbers to posts('n') does nothing either
// POST STUFF
<?php endwhile; ?>
<?php endif; ?>