Code-Snippets-Functions/Execute a function on a child site/All in One SEO Pack/set-index-nofollow-attributes-to-posts.txt

9 lines
259 B
Text

add_filter( 'aioseo_robots_meta', 'aioseo_filter_robots_meta' );
function aioseo_filter_robots_meta( $attributes ) {
if ( is_singular() ) {
$attributes['noindex'] = 'index';
$attributes['nofollow'] = 'nofollow';
}
return $attributes;
}