Forums Forums Search & Filter Pro Pagination doesn’t” work properly

Tagged: 

Viewing 5 posts - 11 through 15 (of 15 total)
  • Trevor
    #242021

    For these lines:

      <?php
      /* 以下、ページャーの表示 by using the wp_pagenavi plugin */
        if ( function_exists( 'pagination' ) ) :
            pagination( $myposts->max_num_pages, get_query_var( 'paged' ) ); //$wp_query ではなく $my_query を使用する!
        endif;
      ?>

    Can you try standard WordPress Codex code:

    <div class="nav-previous"><?php next_posts_link( 'Older posts', $query->max_num_pages ); ?></div>
    <div class="nav-next"><?php previous_posts_link( 'Newer posts' ); ?></div>

    It may be that it is your pagination code that is the issue.

    Anonymous
    #242025
    This reply has been marked as private.
    Trevor
    #242193
    This reply has been marked as private.
    Anonymous
    #242339
    This reply has been marked as private.
    Trevor
    #242344

    Thanks for letting me know. I will close this thread for now.

Viewing 5 posts - 11 through 15 (of 15 total)