Is it possible to add a first and latest posts link?
What you need are $GLOBALS[‘wp_query’]->max_num_pages and get_pagenum_link(). Then you just have to compare get_query_var( ‘paged’ ) with max_num_pages and create a link if they are not equal: /** * Link to last page of a paged archive. * * @param string $text Link text * @return string Nothing if we are on the last page, … Read more