Pagination: How do I always show ‘previous’?
Looking at the source of paginate_links() it seems there is no option available to always include a previous or next link. The function simply compares the current page number with the total page number to determine whether these links need to be added. Working around this problem is possible, though. This should get you started: … Read more