Hello @ilyaurmancheev,
Thank you for contacting the support.
To change the title or description of the paginated comment pages you will have to modify and use the following filters:
https://rankmath.com/kb/filters-hooks-api-developer/#change-the-title
https://rankmath.com/kb/filters-hooks-api-developer/#change-meta-description
Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/
And our plugin adds the adjacent links to the pages that return true for is_paged() function. The comment pages are different from normal paginated pages and that’s why the normal pagination settings don’t apply to them. Also, it is not recommended to index comment pages as they can cause duplicate content issues and have a negative impact on your site’s SEO.
You can use the filter given below to set comment pages as noindex:
add_filter( 'rank_math/frontend/robots', function( $robots ) {
if ( ! empty( get_query_var( 'cpage' ) ) ) {
$robots['index'] = 'noindex';
$robots['follow'] = 'nofollow';
}
return $robots;
});
Hope this helps. Let us know if you need any other assistance.
(@ilyaurmancheev)
4 years, 1 month ago
Hello dear support!
First of all, I want to express my gratitude for the best plugin for SEO optimization of a WordPress site.
I use the Rank Math SEO PRO plugin on several of my sites. On one of the sites I have accumulated a large number of reviews on the woocommerce product pages.
Through the regular WordPress settings, I configured the pagination of comments, as a result, pagination pages of the following type were formed:
https://topcheck.ru/otzyvy-o-shkolah/skyeng-otzyvy-o-kursah-i-obuchenii/comment-page-2/#comments
https://topcheck.ru/otzyvy-o-shkolah/skyeng-otzyvy-o-kursah-i-obuchenii/comment-page-3/#comments
To my great disappointment, title, descripti meta tags are not prescribed for these pages, as for pagination pages:
https://topcheck.ru/otzyvy-o-shkolah/page/2/
https://topcheck.ru/otzyvy-o-shkolah/page/3/
How do I make it so that pages like /comment-page-2/#comments are added to:
1. In the meta tag title and description: %page%
2. The page had the tags <link rel=”prev” href=”…” /><link rel=”next” href=”…” />
In general, I want SEO for pages
https://topcheck.ru/otzyvy-o-shkolah/skyeng-otzyvy-o-kursah-i-obuchenii/comment-page-2/#comments
https://topcheck.ru/otzyvy-o-shkolah/skyeng-otzyvy-o-kursah-i-obuchenii/comment-page-3/#comments
it was the same as for the pages
https://topcheck.ru/otzyvy-o-shkolah/page/2/
https://topcheck.ru/otzyvy-o-shkolah/page/3/
Please help me to deal with this problem. Thank you so much in advance!
The page I need help with: [log in to see the link]