Skip to content

Instantly share code, notes, and snippets.

@gregrickaby
Created June 14, 2012 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gregrickaby/2930356 to your computer and use it in GitHub Desktop.
Save gregrickaby/2930356 to your computer and use it in GitHub Desktop.
Add Google Authorship info to WP <head>
add_action( 'wp_head', 'child_google_authorship', 99 );
/**
* Add Google Authorship info to WP <head>
*
* @author Greg Rickaby
* @since 1.0.0
*/
function child_google_authorship() { ?>
<link rel="author" href="https://plus.google.com/XXXXXXXXXXXX/posts/">';
<?php }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment