Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,280
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,924
- Showcase
- 3,252
-
Assuming that $mydata_curpage
is the current page number (starting from 1):
bb_paginate_links( array( 'total' => ceil( $mydata_count / $mydata_pagelimit ), 'current' => $mydata_curpage ) )
You’ll have to do the actual pagination yourself, but that’s as simple as an array_slice
.