Skip to content

Instantly share code, notes, and snippets.

@micalexander
Last active December 21, 2015 00:58
Show Gist options
  • Select an option

  • Save micalexander/6223855 to your computer and use it in GitHub Desktop.

Select an option

Save micalexander/6223855 to your computer and use it in GitHub Desktop.
wordpress:pagination:snippet
<?php $args = array(
'base' => home_url() . '/news/%_%',
'format' => 'page/%#%/',
'total' => $wp_query->max_num_pages,
'current' => max( 1, $wp_query->query_vars['paged'] ),
'show_all' => true,
//'end_size' => 1,
//'mid_size' => 2,
'prev_next' => True,
'prev_text' => __('&larr; Previous'),
'next_text' => __('Next &rarr;'),
'type' => 'plain',
'add_args' => False,
'add_fragment' => ''
);
?>
<?php echo paginate_links( $args ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment