There is a microdata for breadcrumb links: http://www.data-vocabulary.org/Breadcrumb/ But is there a similar microdata for page links, like: [<-] 3 4 5[prev] 6[current] 7[next] 8 9 10 11 [->]
Yes, there's the pagination
attribute for the Article
item, for instance..
But for collection pages there's no direct way, at least not that I know of. Thees sort of pages are often not ment for indexation anyway. But if you feel strongly about it...
You could use Schema.org's SiteNavigationElement
and extend it as a pagination element:
<!-- The container for your pagination markup -->
<div itemscope itemtype="http://schema.org/SiteNavigationElement/Pagination">
...
A link related to this web page, for example to other related web pages.
The WebPage
item has an attribute called relatedLink
that arguably could be used for pagination purposes. Use CollectionPage
, that's an extension of the WebPage
item, and you still be able to state that there's related pages. This property could also be extended to achieve an higher semantic:
<!-- The pagination link -->
<a itemprop="relatedLink/pagination" href="...">...</a>
Also, have a look at rel="next"
and rel="prev"
to accomplish a markup that touches the subject.
...
<head>
<link rel="prev" href="http://www.example.com/article?story=abc&page=1" />
<link rel="next" href="http://www.example.com/article?story=abc&page=3" />
...
Have a look at Google Webmaster Central Blog or WHATWG for additional information.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With