Restricting number of post display per page (first page) on wordpress

Discussion in 'WordPress' started by w3bmaster, Nov 21, 2006.

Thread Status:
Not open for further replies.
  1. #1
    Well i run a wordpress blog and i whant to know how can i restrict the number of posts per page showen .... i don't know how to do....

    Regards and thanks
     
    w3bmaster, Nov 21, 2006 IP
  2. Richie_Ni

    Richie_Ni Illustrious Member

    Messages:
    10,721
    Likes Received:
    1,175
    Best Answers:
    0
    Trophy Points:
    410
    #2
    Admin Area--->Opinion--->Reading--->Edit the amount in the box besides "Show at most"
     
    Richie_Ni, Nov 21, 2006 IP
  3. mani

    mani Peon

    Messages:
    679
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #3
    by doing it from admin options, it limit the number of post in every page(main,category,monthly archive etc)
    if you want to put a limit on home only then

    Place this script on the template(index.php) for home, just above the starting loop "<?php if(have_post) ?> "

    
    <?php if(is_home()) 
        query_posts("showposts=[COLOR="Blue"]5[/COLOR]"); ?>
    
    Code (markup):
    This will limit the posts to 5 on only home page.
     
    mani, Nov 21, 2006 IP
  4. w3bmaster

    w3bmaster Notable Member

    Messages:
    17,594
    Likes Received:
    416
    Best Answers:
    1
    Trophy Points:
    240
    #4
    thanks Richie and Nani
     
    w3bmaster, Nov 21, 2006 IP
  5. w3bmaster

    w3bmaster Notable Member

    Messages:
    17,594
    Likes Received:
    416
    Best Answers:
    1
    Trophy Points:
    240
    #5
    Thanks i've restricted to 5 posts.
    Regards
     
    w3bmaster, Nov 21, 2006 IP
  6. Zeo

    Zeo Active Member

    Messages:
    158
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    60
    #6
    Zeo, Nov 21, 2006 IP
  7. Scriptona

    Scriptona Notable Member

    Messages:
    4,957
    Likes Received:
    265
    Best Answers:
    0
    Trophy Points:
    280
    #7
    downloaded that, will test it tonight
     
    Scriptona, Nov 22, 2006 IP
Thread Status:
Not open for further replies.