Forums

Show "Page x of x" without Plugin (2 posts)

  1. ivomynttinen
    Member
    Posted 1 year ago #

    Hi,

    I don't use a Pagination-Plugin like WP-Pagenavi and I don't want this also. I'm using the default next_posts_link template tag to show the link to the next page right now.

    What I'm looking for is an simple label that show the actual page and the number of total pages. For example: "You are on Site 2 of 23".

    You know an simple way to do something like this without using a plugin?

    Thanks!

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    try:
    (borrowed from one of the plugins)

    $paged = intval(get_query_var('paged'));
    $max_page = intval($wp_query->max_num_pages);
    if (empty($paged) || $paged == 0)
    		$paged = 1;

    this line might have been changed to:
    $paged = intval(get_query_var('page'));

Topic Closed

This topic has been closed to new replies.

About this Topic