Hello,
Thank you for contacting Rank Math and bringing your concern to our attention.
In this case, you can set the media attachments to index in Rank Math > Titles & Meta > Attachments > Media Robots Meta.
Then, add this filter to your site to noindex the image attachments only:
add_filter( 'rank_math/frontend/robots', function( $robots ) {
if( wp_attachment_is_image() ) {
$robots['index'] = 'noindex';
$robots['follow'] = 'nofollow';
}
return $robots;
});
And here’s a guide to adding the code to the website:
https://rankmath.com/kb/wordpress-hooks-actions-filters/
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.