mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://wordpress.org/support/topic/how-to-remove-author-from-schema-and-change-article-webpage/
1 line
185 B
Text
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; });
|