Skins

How can I restrict the number of posts on the main page, and other category pages unlimited?

Scenario:
"I only want X number of items to appear on my Main Index page but all the entries appearing when a user is viewing my categories."

Solution:

  1. Go to the Main Index of the skin you use.
  2. In the Main Index code, find the
    <%blog(default/index,15)%>

    variable. (What does that mean?!)

  3. Replace that with
    <%if(category)%>
      <%blog(default/index,999)%>
    <%else%>
      <%blog(default/index,10)%>
    <%endif%>

    This will display 10 posts on the front page using the default/index template, unless a category is selected - then the latest 999 items in that category will be shown.

section: Skins | submitted by Leng on 2005.Jun.10 | 3713 views

item rate
Total votes: 14 - Rating: 9.07

Please tell us how useful this answer was to you (0 = useless, 10 = very very helpful):

10