I've got the following loop (this is on a single page, not the index.php):
$top_meta_cat_args =
array(
'posts_per_page' => 9,
'post_type' => 'post',
'meta_key' => 'top-radio',
'meta_value' => 'top-yes',
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC'
);
And it works perfectly. However, when I add code to take the user to the next page, nothing happens:
<a href="<?php echo get_next_posts_page_link(); ?>" class="btn-ar"> more articles</a>
This adds to the current URL: &paged=3, but the content is still the same.
I've also tried removing the echo, but nothing happens. The Codex explains about adding pagination. But I am unsure how to use this with the associative array that I exampled above.
Any help would be great.