• I just want to show 7 post on the home,and when you click the next page , i want to show 10 post.
    But , when i use:

    <?php
    if(is_home()&&!is_paged()){
    query_posts('showposts=7');
    }
    ?>

    when i go to the page2 , i find i miss 3 post !
    In the dashboard i set 10 post to show ,is there anyone can help?

Viewing 1 replies (of 1 total)
  • hi did you try to put 7 post to show in dashboard ?
    and inverse your code :

    <?php
    if(!is_home()&&is_paged()){
    query_posts(‘showposts=10’);
    }
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Help!I have a big problem!’ is closed to new replies.