Viewing 1 replies (of 1 total)
  • Plugin Author Benjamin Denis

    (@rainbowgeek)

    Hi,
    add this code to your functions.php file of your child theme:

    function sp_titles_noindex($html) {
    if (is_paged()) {
    $html = ‘noindex’;
    }
    return $html;
    }
    add_filter(‘seopress_titles_noindex’, ‘sp_titles_noindex’);

    Clear your cache if necessary.

Viewing 1 replies (of 1 total)
  • The topic ‘Pagination Pages’ is closed to new replies.