Quantcast
Channel: WordPress.org Forums » [Open Graph] Support
Viewing all articles
Browse latest Browse all 36

Is there a way to filter article:author?

$
0
0

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' );

Viewing all articles
Browse latest Browse all 36

Trending Articles