This PHP snippet lets you control how search engines index specific pages by adding custom robots meta tags to them.
add_filter( 'aioseo_robots_meta', function ( $robots ) {
if ( is_page( 'example-page' ) ) {
$robots['noindex'] = true;
}
return $robots;
});