I have my posts per page set at 5 however I wonder if it's possible to just set it at ONE ( the latest post) for the Home/Index page and 5 for all the Category pages?
Cheers
John
You can put $posts = 1; in your stub file (if you're using stub files) for blog #1. If you're not using stub files you can try adding this bit to the top of your skin's _main.php file:
<?php
if( $blog == 1 ) {
$posts = 1;
} ?>
I do the first way so I know it works. I think the second will too.
You can put $posts = 1; in your stub file (if you're using stub files) for blog #1. If you're not using stub files you can try adding this bit to the top of your skin's _main.php file:
I do the first way so I know it works. I think the second will too.