Hi, Here is my requirement: Let's say you have a multi-paged article in your blog. The article has 5 pages. On each page I have to display the current page number (without link). How to get the current page number on multi paged article? Thanks
Depends on how you;re doing these multiple pages. Care to give some specifics? Are these actually multiple posts that you;re linking somehow? Are you using the "<-nextpage->" tag?
I think this will help you: <?php $page_number = (get_query_var('paged')) ? get_query_var('paged') : 1; ?> Code (markup): $page_number is the number of the current page!!!