I notice that Wordpress adds:
<link rel='prev'..>
<link rel='next'..>
<link rel='cannonical'...>
to every unique article despite each article post is not related to the previous/next one. Why is that? From what i read prev/next are used to hint to google (bing,etc) that the pages are all related (pagination happening). And the canonical is the start of an article (or the full article itself).
For example, on my site i have 3 articles:
Topic: Ketchup = Source code shows rel='prev' points to Quantum Mecahnics, rel='next' points to Fashion Trends, rel=canonical to itself
Topic: Quantum Mechanics = Source code shows rel='prev' points to Fashion Trends, rel='next' points to Ketchup, rel=canonical to itself
Topic: Fashion Trends = Source code shows rel='prev' points to Ketchup, rel='next' points to Quantum Mechanics, rel=canonical to itself
Huh? Is wordpress applying these attributes incorrectly?
How does this affect SEO since technically these articles arent related by the prev/next makes it seem they are.