How can I implement pagination like shown in the title perhaps something similar to most sites

link|improve this question

Might be of use (incl. comment in there): Enable Numeric Pagination – hakre Feb 14 '11 at 19:17
feedback

3 Answers

up vote 1 down vote accepted

I can across this awesome tutorial just the other day:

http://design.sparklette.net/teaches/how-to-add-wordpress-pagination-without-a-plugin/

which is a modified version of this one:

http://www.kriesi.at/archives/how-to-build-a-wordpress-post-pagination-without-plugin

link|improve this answer
feedback

You can use WP-PageNavi http://wordpress.org/extend/plugins/wp-pagenavi/

link|improve this answer
Beat me by seconds. :) +1 great plugin, functional and customizable. – Rarst Feb 14 '11 at 9:15
feedback

I had the exact same problem. Here are 2 solutions, were the first needs some coding from your side and the second is "hit and run" plus is semantically correct: A list.

  1. paginate_link() function
  2. my "easy pagination deamon" plugin
    -> offers a template tag (you can change the name) like oxo_pagination( $range); that outputs the following:
    [first][previous][1][2][3][4][5][next][last]
    With the $range attribute you can tell how many page links you want to have (seen from current one) and you also got a small stylesheet that gives you the ability to target every part of the pagination plus the current one.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.