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 [->]
There is a microdata for breadcrumb links: http://www.data-vocabulary.org/Breadcrumb/ But is there a similar microdata
Share
Yes, there’s the
paginationattribute for theArticleitem, 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…
1.) Schema.org / SiteNavigationElement
You could use Schema.org‘s
SiteNavigationElementand extend it as a pagination element:Example:
2.) Schema.org / WebPage / relatedLink
The
WebPageitem has an attribute calledrelatedLinkthat arguably could be used for pagination purposes. UseCollectionPage, that’s an extension of theWebPageitem, and you still be able to state that there’s related pages. This property could also be extended to achieve an higher semantic:Example
The Relation attribute
Also, have a look at
rel="next"andrel="prev"to accomplish a markup that touches the subject.Example:
Have a look at Google Webmaster Central Blog or WHATWG for additional information.