I was trying to remove the rel=prev and rel=next tags from my website as my SEO gut suggested. I found those functions which perfectly do the magic:
remove_action('wp_head', 'start_post_rel_link', 10, 0 );
remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
however, after a while my SEO guy suggested to leave it on a categories section where over there it's necassary as far as SEO.
is there a simple way of implementing the rel=prev and rel=next tags only on a categories pages?, e.g: www.website.com/category/category-name and remove it from all other post types? (post, page, homepage etc etc)
Thanks, GIl