Yoast SEO

Override the robot meta with a Wordpress filter

			// We put the robot meta to noindex nofollow using a yoast filter
			add_filter('wpseo_robots', function()
			{
				return 'noindex, nofollow';
			});
// Output :
// <meta name="robots" content="noindex, nofollow">