I just installed a new plugin made by my friend Coffelius, wp-paginate that does just that, paginate wordpress entries. He got tired of the default wordpress paginating system of moving foward just one page at a time with previous and next page links. His plugin pours out a numbered list of pages which you can access individually, this way you can also go back to whichever page you want to without having to move one by one among them.
The plugin is quite easy to use and install. You can download Coffelius wp-pager here.
To install it save the phps file into your plugins folder in wp-content as a php file. Then go to your admin panel and to Plugins and activate it there.
You can then use the following CSS code to style it or use your own:
.wp-pager {
padding: 4px;
margin-top: 16px;
margin-bottom: 16px;
border-width: 1px;
border-style: solid;
border-color: #642;
}
.wp-pager div {
margin: 0;
padding: 0;
text-align: right;
color: #005000;
}
To use it ad the following to your index.php, archive.php and wherever you were using posts_nav_link. Find it in your code and replace it by:
< ?php wp_pager() ?>
or use it with arguments such as this:
< ?php wp_pager('Pag: ', 'Previous', 'Next', 'Showing posts from %f to %l of %t', true); ?>
You can change the text to change it into other languages or customize as you wish. The other parameters %f %l and %t are respectively replaced by the first post shown, last post shown and total of posts in the selected category.
The last argument which is true by default can be changed by false if you don’t wish to have the links show with numbered paging 1,2,3,4, etc.

Entradas (RSS)
[...] WordPress’in aÅaÄıda sonraki sayfa, önceki sayfa yazıp da diÄer sayfaları numara ile göstermemesi beni rahatsız ediyor. Ya bir kod yazarak ya da bir plugin bularak bu problemi aÅayım dedim, bir plugin buldum nitekim ama, kendim yazsam daha kolay olacakmıÅ. Yarım saattir uÄraÅıyorum hala kodda sıkıntı var. Gerçi itiraf edeyim kodu pek incelemedim, belki dikkatlice incelesem çözebilirdim. Ama insan böyle hazır bulunca incelemek bile zor geliyor! wp-pager plugini. (Gerçi bu asıl developer web sitesi deÄil.) [...]
Excelent plugin article!
Thanks.