This PHP code snippet helps you prevent specific tags from being included in your meta tags for improved SEO control.
add_filter( 'aioseo_meta_tags', function ( $metaTags ) {
if ( is_tag() ) {
$metaTags['noindex'] = true;
}
return $metaTags;
});