Last active
December 27, 2015 14:49
-
-
Save rdallaire/7343509 to your computer and use it in GitHub Desktop.
WordPress Pagination Function
From http://wp-snippets.com/pagination-without-plugin/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function pagination($prev = '«', $next = '»') { | |
| global $wp_query, $wp_rewrite; | |
| $wp_query->query_vars['paged'] > 1 ? $current = $wp_query->query_vars['paged'] : $current = 1; | |
| $pagination = array( | |
| 'base' => @add_query_arg('paged','%#%'), | |
| 'format' => '', | |
| 'total' => $wp_query->max_num_pages, | |
| 'current' => $current, | |
| 'prev_text' => __($prev), | |
| 'next_text' => __($next), | |
| 'type' => 'plain' | |
| ); | |
| if( $wp_rewrite->using_permalinks() ) | |
| $pagination['base'] = user_trailingslashit( trailingslashit( remove_query_arg( 's', get_pagenum_link( 1 ) ) ) . 'page/%#%/', 'paged' ); | |
| if( !empty($wp_query->query_vars['s']) ) | |
| $pagination['add_args'] = array( 's' => get_query_var( 's' ) ); | |
| echo paginate_links( $pagination ); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if ( have_posts() ) : ?> | |
| <?php while ( have_posts() ) : the_post(); ?> | |
| // post goes here | |
| <?php endwhile; ?> | |
| <div class="pagination"><?php pagination('»', '«'); ?></div> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment