What plugin are you using to do this? Because on Yoast seems there are no option to noindex this kind of pagesI usually noindex pagination pages, they randomly cause cannibalization problems for some websites,
Just make sure the website(s) overall internal links & silo is on point to pass link juice across the website
You can use the following filter for YoastWhat plugin are you using to do this? Because on Yoast seems there are no option to noindex this kind of pages
add_filter( 'wpseo_robots', 'my_robots_func' );
function my_robots_func( $robotsstr ) {
if ( is_page() && is_paged() ) {
return 'noindex,follow';
}
return $robotsstr;
}
Leave them to index naturally.Hey guys, what do you think about page1,page2,page3 etc. in wordpress? I have to noindex, or leave them index?
Rank Math have this option, Yoast nope.