#4142 closed defect (bug) (fixed)
Add rel=next / prev on support archives
Reported by: | joostdevalk | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Support Forums | Keywords: | seo |
Cc: |
Description (last modified by )
After we've fixed #3951 we should add rel=next / rel=prev to archives like this:
- https://wordpress.org/support/topic-tag/custom-community/page/2/
- https://wordpress.org/support/theme/sugar-and-spice/page/6/
- https://wordpress.org/support/topic-tag/display-posts-shortcode/page/3/
If we do that, Google will understand the pagination of these series and crawl and rank them more logically.
Relevant documentation:
Change History (11)
#6
in reply to:
↑ 5
@
6 years ago
Replying to dd32:
the
WP_Query
of topics isn't available until well into the<body>
render AFAICT
Yeah, that's where it got complicated :)
The maximum number of pages is available on page load for topic tags, but not for views.
#9
@
6 years ago
Didn't touch pages like https://wordpress.org/support/users/sergeybiryukov/replied-to/page/2/ for now, as their canonical URL corrently points to the main WP.org profile, see #4170.
If there's a consensus that subpages like Topics Started, Replies Created, Reviews Written, etc. should have their own canonical tag, we can revisit the next/prev
links for them as well.
It's going to be a bit hard to add
<link> rel=prev/next
on some of the Support Forum pages, as theWP_Query
of topics isn't available until well into the<body>
render AFAICT