• Using Atahualpa theme — The problem is straight forward: If I have only one page showing on the front of my blog, only one page will get archived in any given archive (monthly, by category, etc). If I have 5 showing, up to 5 will get archived in a given archive.

    I’d like to be able to show 3 on the front of my blog and have unlimited in the archive.

    Thanks for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Can you elaborate and use “post” for posts and “page” for pages. I think you mean “post” when you say “page” but I am not sure.

    What is your setting at “Site Admin” -> “Settings” -> “Reading” -> “Blog pages show at most”? Should be 10 by default. That means 10 per page, not 10 total. It would still show all, just broken up into 10 posts per page.

    =================================

    To have the homepage display only 3 posts, and the other pages (archives, category, tag pages, search result pages) whatever you have set at “Blog pages show at most”, ADD, in index.php, this:

    <?php if (is_home()) {query_posts('showposts=3');}?>

    RIGHT BEFORE this:

    <?php if (have_posts()) : ?>

    Thanx!!!
    I needed that!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Archives only show the number of posts from front page’ is closed to new replies.