Code-Snippets-Functions/Execute a function on a child site/Rank Math SEO/remove-author-rich-snippet-schema.txt

1 line
185 B
Text

add_filter("rank_math/snippet/rich_snippet_article_entity", function ( $entity ) { if ( isset( $entity['author'] ) ) { unset( $entity['author'] ); return $entity; } return $entity; });