Remove rich text schema for author in Rank Math SEO on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter("rank_math/snippet/rich_snippet_article_entity", function ( $entity ) { if ( isset( $entity['author'] ) ) { unset( $entity['author'] ); return $entity; } return $entity; });