Does WordPress have any built-in pagination functions to show the page numbers instead of previous and next page links?

If not, how can I add that?

Thanks

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

It depends on which pagination you're talking about:

  • Archive Index pagination
  • Single-Post pagination
  • Comments pagination

In all three cases, the answer is yes, but the implementation is different.

Archive Index Pagination

WordPress provides a function, paginate_links(), for post-archive pagination links. It's use isn't exactly straightforward, but fortunately, implementation is mostly cut-and-paste from the Codex example.

Here's how I use it in Oenology.

Single-Post Pagination

WordPress provides a function, wp_link_pages(), for intra-post pagination links. It's use is straight-forward, as a normal template tag.

Comments Pagination

WordPress provides a function, paginate_comments_links(), for comments pagination links. This template tag is actually a wrapper for paginate_links(), but its use is straight-forward.

link|improve this answer
feedback

Try using the WP page navi plugin. http://wordpress.org/extend/plugins/wp-pagenavi/

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.