I am currently using robots.txt file that disallows indexing my WP Admin. Currently my robots file looks like this:
User-agent: *
Disallow: /wp-admin/
Allow: /wp-admin/admin-ajax.php
I would like the search engines to also STOP indexing my images. These are my private portfolio images and I don't want them to appear in any online search.
So I will be adding the restriction for Google Image bot and Bing bot. My Robots.txt file will now look like this:
User-agent: *
Disallow: /wp-admin/
Allow: /wp-admin/admin-ajax.php
User-agent: Googlebot-Image
Disallow: /
User-agent: msnbot-media
Disallow: /
Is this written correctly? Any other suggestions? Are there any other image bots I should be including?