• Resolved jackmac71

    (@jackmac71)


    Hi there,

    I think about to switch from rank math to Slim Seo, but I need to know if SlimSeo exclude Tags automatically or is there a possibility to exclude tags from indexing manually?

    Because I don‘t want duplicate content in Googles Search Console.

    Best regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Anh Tran

    (@rilwis)

    Hi @jackmac71 ,

    Slim SEO doesn’t exclude tags from indexing by default. But you can do that by adding this snippet to your theme’s functions.php file (or using a code snippet plugin):

    add_filter( 'slim_seo_robots_index', function( $value, $object_id ) {
    if ( is_tag() ) {
    return false;
    }
    return $value;
    }, 10, 2 );
    Thread Starter jackmac71

    (@jackmac71)

    Thanks a lot

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Exclude Tags from Indexing’ is closed to new replies.