Skip to content

Instantly share code, notes, and snippets.

@donaldG
Last active October 24, 2017 13:14
Show Gist options
  • Save donaldG/890bfbd5f731d0209f628d58b317a918 to your computer and use it in GitHub Desktop.
Save donaldG/890bfbd5f731d0209f628d58b317a918 to your computer and use it in GitHub Desktop.
modify facebook instant articles author
<?php
function filter_instant_articles_author_info( $authors ) {
$authors = '';
return $authors;
}
add_filter( 'instant_articles_authors', 'filter_instant_articles_author_info', 10, 1 );
//again, maybe you can just return nothing?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment