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
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
You must be logged in to post a comment.
It depends on which pagination you’re talking about:
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 forpaginate_links()
, but its use is straight-forward.Try using the WP page navi plugin. http://wordpress.org/extend/plugins/wp-pagenavi/