• Resolved aaron843

    (@aaron843)


    I see some art-based sites using the following to indicate that they want their content indexed for search, but not to be used as input for AI

    <meta name="robots" content="Index, NoAI">

    Is it possible to do this globally for my site? As an artist, I don’t want my images being used to create AI art. I’m not sure if the tag is being honored, but I’d like to try to implement it.

Viewing 1 replies (of 1 total)
  • Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @aaron843,

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

    There’s no official statement we received yet regarding NoAI robots meta tag. However, to achieve that, you may try applying the following filter to your site.
    add_filter( 'rank_math/frontend/robots', function( $robots ) { $robots["follow"] = 'NoAI'; return $robots; });

    Here’s how you can add filters/hooks to your WordPress site:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    The output should be same as below:
    <meta name="robots" content="Index, NoAI">

    Let us know how it goes. Looking forward to helping you.

Viewing 1 replies (of 1 total)

The topic ‘Meta Robots NoAI ?’ is closed to new replies.