Skip to content

Instantly share code, notes, and snippets.

@ediamin
Created July 5, 2015 21:10
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save ediamin/52c942c62b00c5e3ebaa to your computer and use it in GitHub Desktop.
Save ediamin/52c942c62b00c5e3ebaa to your computer and use it in GitHub Desktop.
Bootstrap Pagination for WordPress
/*
* custom pagination with bootstrap .pagination class
* source: http://www.ordinarycoder.com/paginate_links-class-ul-li-bootstrap/
*/
function bootstrap_pagination( $echo = true ) {
global $wp_query;
$big = 999999999; // need an unlikely integer
$pages = paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages,
'type' => 'array',
'prev_next' => true,
'prev_text' => __('« Prev'),
'next_text' => __('Next »'),
)
);
if( is_array( $pages ) ) {
$paged = ( get_query_var('paged') == 0 ) ? 1 : get_query_var('paged');
$pagination = '<ul class="pagination">';
foreach ( $pages as $page ) {
$pagination .= "<li>$page</li>";
}
$pagination .= '</ul>';
if ( $echo ) {
echo $pagination;
} else {
return $pagination;
}
}
}
@gurov87
Copy link

gurov87 commented Nov 18, 2015

Many Thanks, works great!

@rmgimenez
Copy link

Thanks

@willyanmarques
Copy link

Obrigado!!!

@mtx-z
Copy link

mtx-z commented Apr 15, 2018

Hello,

Made a slightly different version that :

  • I tested with latest Bootstrap 4.1
  • accept custom wp_query instance as argument (for custom wp_query()) or nothing to use global one

https://gist.github.com/mtx-z/f95af6cc6fb562eb1a1540ca715ed928

@dvoracek-jakub
Copy link

Another (2019, almost 2020 :) working example could be found here: https://gist.github.com/dvoracek-jakub/ce7ca24a15e4f77b5e67d827e9db6ed7

Thanks to OP!

@themeix
Copy link

themeix commented Dec 11, 2019

Great job man!

@encoderit-arman
Copy link

Thanks dude

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment