Is there a way to filter article:author?
-
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' );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Is there a way to filter article:author?’ is closed to new replies.