Serious Canonical Issue with Paginated Posts
-
WordPress version: 3.5.1.
WordPress SEO version: 1.4.7, DEV, 1.3.4.4This could be a bug or maybe bad coding. The plugin seems to have canonical issues again on paginated posts.
Example of a post paginated into 3 sectionshttps://example.com/pagination-test/ https://example.com/pagination-test/2/ https://example.com/pagination-test/3/
On page 1 (https://example.com/pagination-test/)
Everything is OK, it outputs<link rel="canonical" href="https://example.com/pagination-test/" /> <link rel="next" href="https://example.com/pagination-test/2/" />
Going to page 2 (https://example.com/pagination-test/2/)
All is well<link rel="canonical" href="https://example.com/pagination-test/2/" /> <-- This is good <link rel="prev" href="https://example.com/pagination-test/" /> <link rel="next" href="https://example.com/pagination-test/3/" />
Now to the last page 3 (https://example.com/pagination-test/3/)
Things go totally wrong<link rel="canonical" href="https://example.com/pagination-test/" /> <-- This is so wrong <link rel="prev" href="https://example.com/pagination-test/2/" />
This means that Google might drop the 3rd page from the index since we are pointing to the 1st page as the canonical page.
According to Google, It should read on page 3 (last page):<link rel="canonical" href="https://example.com/pagination-test/3/" /> <link rel="prev" href="https://example.com/pagination-test/2/" />
https://googlewebmastercentral.blogspot.com/2013/04/5-common-mistakes-with-relcanonical.html
Any ideas?
- The topic ‘Serious Canonical Issue with Paginated Posts’ is closed to new replies.