Removing “Noindex, follow” from pages [closed]

Ooohhh you mean “pagination” pages. Gotcha now!

It’s hard to say for sure(I know I know), but at first glance it looks like this block of code would be what you’re after:

if ( $wp_query->query_vars['paged'] && $wp_query->query_vars['paged'] > 1 && isset( $options['noindex-subpages'] ) && $options['noindex-subpages'] ) {
                $robots['index']  = 'noindex';
                $robots['follow'] = 'follow';
            }
        }

Leave a Comment