Thanks for your solution, I use this code:
add_filter( 'wpseo_robots', 'yoast_seo_robots_index_author' );
function yoast_seo_robots_index_author( $robots ) {
if ( is_author() ) {
return 'index, follow';
} else {
return $robots;
}
}
This works for me.
-
This reply was modified 2 years ago by quolt.
-
This reply was modified 2 years ago by quolt.