go to “settings” -> “reading”
probably this is what u need
Thank you for reply, but i need different from global posts number.. i need just in category the diferent number of posts and if i could change the number how many posts to show in one page. and it would be like dropdown meniu…
Thank but this is not working with wp-pagenavi…
You’d have to get to grips with building a custom WP_Query(). You may find the various filters useful, particularly, add_filter('posts_limits','my_post_limit_filter'); which you can use to dynamically set your query limit.
As for your links, or drop down, you’d need some custom query parameter, perhaps ?ppp=10 which you can tack onto the page url.
And then finally use some conditional functions such as is_archive() to test when to modify the page limits.
Hope that gives you some pointers.