Replies: 3
By default the plugin reveals the author URL for articles, but some sites have these disabled for privacy or they are not needed. I tried filtering on opengraph_metadata but it doesn’t appear to contain the article:author data.
I also tried this:
function my_opengraph_metadata( $metadata ) {
unset( $metadata['article:author'] );
return $metadata;
}
add_filter( 'opengraph_metadata', 'my_opengraph_metadata' );