To reach the last game here, it might take 14 clicks.
Every page of your website should be accessible in less than 4 clicks from the homepage.
Pagination is usually done in different ways. We distinguish two types:
It is important that all pages are easily accessible, not only by Google's bots, but also by Internet users.
Use the rel = "next" and rel = "prev" links to signal the relationship between the different URLs. This markup sends Google a strong signal that you want to use these pages as a logical sequence
Suppose the following URLs contain paginated content:
http://www.example.com/article-partie1.htmlhttp://www.example.com/article-partie2.htmlhttp://www.example.com/article-partie3.htmlhttp://www.example.com/article-partie4.htmlIn the <head> section of the first page (http://www.example.com/article-part1.html), add a link pointing to the next page in the sequence, as follows:
<link rel = "next" href = "http://www.example.com/article-part2.html">Since this is the first URL in the sequence, you do not need to add a markup for rel = "prev".
On the second and third pages, add links to the previous and next URLs in the sequence. For example, you can add the following items to the second page of a sequence:
<link rel = "prev" href = "http://www.example.com/article-part1.html"><link rel = "next" href = "http://www.example.com/article-part3.html">On the last page of the sequence (http://www.example.com/article-party.html>), add a link to the previous URL, like this:
<link rel = "prev" href = "http://www.example.com/article-part3.html">As this is the last URL of the sequence, it is not necessary to add rel = "next" link.
Display pagination on DESKTOP and MOBILE
In order for all the pages to be easily accessible:
WARNING
rel = "prev" and rel = "next" tags are always In the <head> section
NOTE
I would always advise a tradition pagination method as it is still preferred by search engines, but if you wish to keep the "load more" button, then I would advise the following for now: