It seems to be the hot topic at the moment, but I did initially find it quite difficult to sift through all the long, in-depth instructional “How To” articles to find a simple step-by-step guide to implementing sitewide Google Authorship Markup on WordPress, so I thought I would try and offer a simple set of instructions. For a fantastic (and far more in-depth) alternative also covering blogs with multiple authors, check out Joost De Valk’s guide to implementing Google Authorship Markup.
1. Get a Google+ Profile
Most of you will have done this already – just make sure the photo is a clear headshot. I don’t think it’s quite as strict as applying for a passport, but better to be safe than sorry because you can bet Google won’t give you a reason if they decide your photo isn’t appropriate for the SERPs.
2. Add your site to the list of sites that you ‘contribute’ to
Edit Profile > Contributor To
3. In WordPress, add the following code to your theme’s functions.php file
This will stop WordPress from stripping all links of “rel” attributes:
function yoast_allow_rel() {
global $allowedtags;
$allowedtags[‘a’][‘rel’] = array ();
}
add_action( ‘wp_loaded’, ‘yoast_allow_rel’ );
4. Choose a Page to Use as Your Author Page and Link to it Using rel=”author”
If you want your picture to show up in the SERPs for every page on your site then you can go into the menu manager in WordPress and change the link relationship of your “About Me” page (or any other top level page for that matter) to “author” and that will add the rel=”author” for you.
5. Link To Your Google+ Profile From Your Author Page Using rel=”me”
You must also include a “+” symbol as either the first or last character in the anchor text – eg. MikeHall+
6. Fill in This Form:
Google Authorship Request Form
Sit Back and Wait for your Page to be Cached
Once you have been approved as an author (which seems to take a couple of days) and Google has then had a chance to go back and cache your site’s pages, you’ll start seeing something like this






.png)
Nice article Mike – I implemented this myself using a simpler method (just linking each post out to my Google+ page) and that works too. Easy if you have an authorbox after each post, or want to put it in a sidebar widget.
We wrote a plugin for people not wanting to do it themselves, or in the case where you have a multi-author blog it can be easier to set up. It uses the three way mechanism you describe. http://www.authorsure.com. It’s a free plugin.
Liz
Thanks for your comment Liz. Wish I’d known about your plugin – could have saved me a bit of work! I may try it on another blog
Keep in touch.