dxw/pagination

This package is abandoned and no longer maintained. No replacement package was suggested.

Unit-tested framework-agnostic pagination that works with Bootstrap and Foundation

v1.0.0 2016-07-15 13:07 UTC

This package is auto-updated.

Last update: 2020-08-30 01:20:08 UTC


README

Installation

composer require dxw/pagination=dev-master

Usage

<?php
$pagination = new \Dxw\Pagination($paged, $max, 2, 1, function ($n) use ($args) { $args['paged'] = $n; return add_query_arg($args, get_bloginfo('url')); });
?>
...
<?php echo $pagination->render() ?>