//noindex for pagination pages add_filter( 'wpseo_robots', 'my_robots_func' ); function my_robots_func( $robotsstr ) { if ( is_page() && is_paged() ) { return 'noindex,follow'; } return $robotsstr; }
Noindex for pagination pages. Yoast SEO
Approved. Code works!
This is exactly the working code that is verified by the moderator or site administrators
More
lil-code© | 2022 - 2024
Go Top