Noindex for search pages

#327891
Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting Rank Math and bringing your concern to our attention.

    Could you please try this filter to set those filtered product pages to noindex?

    add_filter( 'rank_math/frontend/robots', function( $robots ) {
    if (is_paged() || is_product_category() || isset($_GET['filters'])) {
    	$robots['index'] = 'noindex';
    	return $robots;
    }
    return $robots;
    });

    The filter should be added to your active theme’s functions.php file. Here’s another way to apply the filter using the rankmath.php file:
    https://rankmath.com/kb/filters-hooks-api-developer/#adding-filters-and-hooks-in-rank-math-php

    I hope that helps.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘Noindex for search pages’ is closed to new replies.