Using “link rel prev and next” WordPress pagination

Using link rel prev and next for pagination in Wordpress

Using “link rel prev and next” for pagination in WordPress is one of the methods that solves the problem of duplicate duplicate meta descriptions for posts list that requires more than one page. However this applies if search engines continue to accept this signal.

The code that sends signal to use “link rel prev and next” for pagination in WordPress may not be used in the future by Google. But we do not know about other Search Engines. However if this code did not solve the problem, adding this code does not create any problem. Instead, the Search Engines can use this as orientation for paginated archive pages.

I was looking for a duplicate meta descriptions solution in pagination pages. I casually found that solution from a user in wordpress.stackexchange.com.

Why am I surprised?

On the same page a visitor requested a solution to remove tag  “rel=prev and rel=next” from the <head> section. As the visitor says “I was trying to remove the rel=prev and rel=next tags from my website as my SEO gut suggested”.

The response of an StackExchange user to this question was:

“Not entirely sure if I agree with the explanation of your SEO guy as rel=prev and rel=next are used for paginated archives.”

The same user published the code he was using on their website. Below is that code ( functions.php):

remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head' );
add_action( 'wp_head', 'cor_rel_next_prev_pagination' );
function cor_rel_next_prev_pagination() {
  global $paged;
  if ( get_previous_posts_link() ) {
?>
  <link rel="prev" href="<?php echo get_pagenum_link( $paged - 1 ); ?>">
<?php
  }
  if ( get_next_posts_link() ) {
?>
  <link rel="next" href="<?php echo get_pagenum_link( $paged + 1 ); ?>">
<?php
  }
}

Link: https://wordpress.stackexchange.com/questions/47638/generating-rel-prev-and-rel-next-only-on-wordpress-categories

In fact, I also think that the tag “rel=prev and rel=next” is a solution to which we have to agree when dealing with duplicate meta desciption in the category, archive pages.

However, according to some information Google will no longer use “rel=prev and rel=next” tags. This may cause some confusion. But as they say there “Googlebot is smart enough to find your next page by looking at the links on the page, we don’t need an explicit “prev, next” signal“.

Related posts