Does anyone know if it’s possible to change wp_link_pages
,
I want to change the order of the pages
Example :
i have an Post consisting of 5 pages
i want when you click on “Next page”, it takes you to a random page of the five pages that we have in the article. without repeat
I want wp_link_pages (mutli-page posts) to display the page numbers, the word “previous” before those numbers, and a “next” after those numbers. It would look like this:
When a post is split on more pages TwentyTen theme use the native function wp_link_pages
to display a navigation page bar at the end of post.
Many plugins seem to be adding a filter/action hook to the_content
to display related posts, advertisements and such. The problem is I these appear before the post pagination so it the pagination is pushed down below.