
Add rel=”nofollow” to Author Bio in WP
<?php
function ccd_author_bio_seo() {
  $the_author_description = get_the_author_meta( 'description' );
  $string = str_replace( 'href','rel="nofollow" href', $the_author_description );
  
  echo $string;
  
}
?>WordPress Snippet