Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joelstransky/86f7b77f89fc24851f64e7b7bd6df368 to your computer and use it in GitHub Desktop.
Save joelstransky/86f7b77f89fc24851f64e7b7bd6df368 to your computer and use it in GitHub Desktop.
Display pagination in WordPress! using Twitter Bootstrap 3's pagination component
<?php
$args = array(
"nav_class" => "some-nav-class some-other-nav-class",
"ul_class" => "some-ul-class some-other-ul-class",
"li_class" => "some-li-class some-other-li-class"
);
echo paginate_links_as_bootstrap( $args );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment