WordPress post pagination on custom template not working
next_post_link will use the current query (which is the global $wp_query in your case). If you want to use them with other queries, pass them the maximum page number as the second argument. There’s an example in the codex. For previous_post_link it doesn’t matter, because it’ll only show a link if you’re on a page … Read more