I have a blog page in my wordpress site http://jarm.shahumyanmedia.com/blog/
.
Here the blogs are posts, and I need to display 5 posts for each page, but I can't display pagination link.
This is how I am getting posts:
$posts = get_posts( array(
'posts_per_page' => 5,
'orderby' => 'date',
'order' => 'DESC',
'category' => 5)
);
And this is how I am trying to get pagination links:
<?php wp_link_pages(); ?>
http://codex.wordpress.org/Template_Tags/wp_link_pages
But I don't see any output.