Support » Fixing WordPress » How to list all posts when viewing category..

  • For my main blog index I only want the selective amount of blogs to show but I want all the blogs to show when you are viewing the individual category, Is there a plugin for this? I’ve looked and can’t seem to find what I want. Help appreciated, thank you.

    A2

Viewing 4 replies - 1 through 4 (of 4 total)
  • you may use the function for your homepage, just before the loop –
    query_posts(‘showposts=n’);
    where n is the number of posts to show.

    Be sure to include it in the home.php file, to affect only the homepage.
    If you don’t have such a file, copy the index.php and rename it to home.php and then make the change.

    About template Hierarchy – http://codex.wordpress.org/File:Template_Hierarchy.png

    About query_posts – http://codex.wordpress.org/Template_Tags/query_posts

    Thread Starter dirt2

    (@dirt2)

    I only want my categories to be affected though, My index page is fine.
    And why does it need to have a home.php page, I’ve never seen a template use home.php instead of index.php?

    Edit: Right now I am using the code (you provided) on my index and displaying a limited amount of posts for only the index and I’ve changed the default number to 100 so it will display 100 or so posts for everything except the index, which is fine.. Is this what you were suggesting? It seems to work fine without having to create a home.php page as well.

    Edit 2: Actually my pagination broke if I used it on my index.. Gave me an error when you click previous page.

    Thanks

    Well, if you have an archive.php or category.php, so you don’t really need to create a home.php in your case.
    It’s just there are templates with none of these files, and the index.php becomes responsible to all categories and archvies as well.
    If your template wouldn’t have a category.php or archive.php, and you would have made this change to the index.php, it would have been affeting your categories as well, thus why I suggested ..

    Thread Starter dirt2

    (@dirt2)

    Do you know of a method that won’t give me that error?

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to list all posts when viewing category..’ is closed to new replies.