Skip to content

Instantly share code, notes, and snippets.

@palimadra
Created November 12, 2014 17:07
Show Gist options
  • Save palimadra/ff8fdb54de20d8ef314d to your computer and use it in GitHub Desktop.
Save palimadra/ff8fdb54de20d8ef314d to your computer and use it in GitHub Desktop.
A functions file for adding open graph tags to WordPress site
// read more here: http://garage.socialisten.at/2013/06/new-open-graph-tags-for-article-publisher-author/
// (c) @michaelkamleitner
if ( ! function_exists('additional_opengraph_tags') ) {
function additional_opengraph_tags() {
if ( is_single() and ! is_page()) {
?>
<meta property="article:publisher" content="https://www.facebook.com/YourPageName" />
<meta property="article:author" content="https://www.facebook.com/YourAuthorName" />
<?
}
}
add_action('wp_head', 'additional_opengraph_tags');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment