This a template page in my wordpress (have removed html), it pulls out the posts from my wordpress database. I want to paginate it but have no idea! :(
I wan't to get something like this
<< First Prev 1 2 3 4 Next Last >>
<?php
$postslist = get_posts('numberposts=10&order=ASC');
foreach ($postslist as $post) :
setup_postdata($post);
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a></li>
<li><?php the_excerpt(); ?></li><br/><hr/>
<?php endforeach; ?>
Here's a pagination class I use:
And then in the page.html, I used this: