Hello
My quest is to display 1 full post on home page and snippets of 5 posts on the others using more tag. I successfully achieved this by inserting the following into my index.php.
<?php if (is_home()) {
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("showposts=1&paged=$page");
} ?>
then i set my blog posts shown at most to 5.
My navigation is broken now and displays 404 errors!
I then set the posts shown at most setting to 1 on the homepage and deleted the above code and I attempted to put it in my archive.php (which also displays category and tag posts when clicked) but it then broke my archives page.
Currently I have set posts shown at most setting to 1 and I have just 1 post showing on the archive page which is not what i want but the navigation works fine.
I dont know what else to try and which file i should edit.
Can anyone help me please?