Код
add_filter('wpseo_robots', 'yoast_no_home_noindex_page', 999);
function yoast_no_home_noindex_page($string= "") {
if (is_page( array( 66, 408, 2 ) ) ) {
$string= "index,follow";
} else {
$string= "noindex,follow";
}
return $string;
}





