I’m using wp_link_pages()
to split my post into multiple pages. I want to achieve something like this as shown in the image below. Instead of showing all the page numbers with links, I want it to show only this format (Current Page of Total Page). Please help me with the exact codes. Thank you so much in advance.
PS: I don’t want to use plugins.
There is a simple solution to this problem. I’ve got this inspiration from source file where function wp_link_pages is defined.
If you need more freedom you can always adapt this function to suit your purposes. Include function into wordpress loop! Like this for example:
As you can see, there is “private” function _wp_link_page used to solve your problem. I don’t like using “private” functions, but it solves our problem.