Maintenance 20/1004535d since update
Active installs
20
Downloads
6,191
Reviews
0
Age
12.4y
TagspagepageslistpaginationPaginate
Plugin info
Total downloads: 6,191
Active installs: 20
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 8/1/2013 (4535 days ago)
Added to WordPress: 8/1/2013 (12 years old)
Minimum WordPress version: 2.5.1
Tested up to WordPress version: 3.5.2
Minimum PHP version: f
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4535 days ago
20/100
Is Paginate abandoned?
Possibly abandoned (last update 4535 days ago).
Compatibility
Requires WordPress: 2.5.1
Tested up to: 3.5.2
Requires PHP: f
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
WP-Paginate
Rating 4.6/5 (107 reviews) • Active installs 20,000
TW Pagination
Rating 5.0/5 (7 reviews) • Active installs 1,000
WordPress Pagination Plugin: Page-Links Plus
Rating 4.3/5 (6 reviews) • Active installs 100
Back and Forward Button
Rating 3.8/5 (4 reviews) • Active installs 100
Pagination by HocWP Team
Rating 5.0/5 (2 reviews) • Active installs 100
Date Pagination
Rating 0.0/5 (0 reviews) • Active installs 90
Description
Display your list with pagination by a simple function call.
Add multiple paginations to the same page.
Features
- Multiple paginations at the same page
- Chose how many items to display per page, default: 10
- Chose adjacent items, default: 6
- Customize on page query variable, default: “page”
- Choose if the on page value should be fetched automatically, default: true
- How to display first and last page buttons, as numbers or as text, default: numbers
- All the buttons are visible by default
- If the previous button is visible
- If the next button is visible
- If the previous button is visible when the first page is reached
- If the next button is visible when the last page is reached
- If the adjacent dots are visible
- If the first button is visible
- If the last button is visible
- Localization support – download the template and submit your language
- All HTML/CSS elements are customizable
Changelog
- 1.0: Plug in release
Installation
Install and Activate
- Download and unzip
paginate.zip. - Upload the
paginatedirectory to the/wp-content/plugins/directory. - Activate the plugin through the
Pluginsmenu in WordPress. - In your theme, modify the CSS file to change the look and feel of your pagination.
Implement
3 line implementation
<?php
$totalitems = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users");
$p = new paginate($totalitems);
echo $p->get_pagination();
?>
Post onpage argument
<?php
$onPage = $_GET['page']
$totalitems = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users");
$p = new paginate($totalitems);
echo $p->get_pagination($onPage);
?>
Example implementation
<?php
//get total items from database
$totalitems = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users");
$p = new paginate($totalitems);
$limit = $p->itemsPerPage;
$offset = $p->get_offset();
//your query. add the offset and limit to the query
$query = "SELECT $wpdb->users.ID FROM $wpdb->users LIMIT $offset, $limit";
$user_ids = $wpdb->get_results($query);
//your loop
foreach($user_ids as $id) {
//do something...
}
//pagination html
echo $p->get_pagination();
?>
Frequently Asked Questions
No FAQ available
Review feed
No reviews available
Screenshots
No screenshots available
Changelog
No changelog available