Hi Tim. If you are not very affraid of simple php you can achieve pagination with the current version.
“offset” attribute works fine, it can be passed as a query parameter.
The code below will display 10 posts starting from the offset passed in url:
$postsperpage = 10;
$offset = $_GET[‘offset’]; // get offset from url
$query = ‘numberposts=’. $postsperpage . ‘&offset=’ . $offset;
if ( function_exists ( ‘the_wp_tiles’ ) )
the_wp_tiles(array(‘posts_query’=>$query));
then you have to add links/divs to next/prev page putting offset +10, -10 respectivelly
eg like this:
$nextpageurl=”https://mygreatepage.com/?offset=” . ($offset+10);
?offset=” . ($offset+$postsperpage);
<a href="<?php echo $nextpageurl ?>">next page</a>