The recent changes from Google and my post about it regarding the highlighting of authors in search caused quite a few questions. People have been asking me how to do specific things and how to make certain elements contain rel=”author” or rel=”me”. Instead of replying to each of those emails and comments I decided to write one post which “has it all”.
Update August 23rd, 2011: Google has made a simpler version available to those of you who are not able to follow the instructions below. It is still recommended that you do in fact follow the instructions below if you have the appropriate access to the blog you’re trying to do this on, if not, please follow the instructions I added at the bottom of this post. I also updated screenshots and added two video’s with explanations. Let me know if you have more questions in the comments, I’ve updated the date of this post so it will pop up again in your reader.
Update June 8th, 2012: we’ve found an even easier way to add author highlighting to your site. Check out how to push rel=”author” through a <link> element in the <head>.
I did see some more examples pop up, for example, when I searched for [highlighting authors], both this post from Matt Cutts (on highlighting authors in the comments) and this post from Gina Trapani got an author highlight.
- Is the link to the Google Profile from the author page required?
- How to add rel="author" to a link in your menu
- How to allow authors to add rel="me" to links in their bio's
- How to allow authors to set their Google Profile URL
- How to change the author URL
- Update: the simpler version
- Last (but important!) step
- rel="author" + rel="me" actually works!
Is the link to the Google Profile from the author page required?
Apparently, yes, it is. It’s quite logical for Google to want a link from your Google profile to your author page, it makes 100% sure that you are indeed the author of that piece of content when you link to your Google Profile and back from your Google Profile to your author page. Of course the link to your Google Profile wouldn’t be 100% needed for this, I don’t know whether Google will keep this requirement.
The flow should thus be as follows: article links to author page on the same domain. The author page on the same domain links to the Google Profile. The Google profile, in turn, links back to the author page.
So you are not, as some people suggested, meant to link to your Google Profile straight from the article, instead, you should link to your author page on the domain you published the article at and that page in turn should link to your Google Profile and be linked from your Google Profile.
How to add rel=”author” to a link in your menu
One of the issues that came up with is that some people don’t want to show the author on each and every post when the author on that blog is always one single person. Those people will usually have an “about” page linked in their site’s main navigation, for instance, Robert Scoble, on his blog Scobleizer:

That “about” link could very easily be used to identify him as the author of each and every post, to Google, if it had rel="author" sticked to it. Turns out that this is actually very easy to do if you use the WordPress menu editor.
Go to the Menus page and in the top right, click on screen options:

Once you click that link, it’ll fold out, and the display options will show, including “Link Relationship (XFN)”, be sure to check that box:

Once that box is checked, you can edit your menu item to include the link relationshop “author” which will cause it to get rel=”author” added to it:
Be sure to just add “author” (without the quotes) this is enough to make sure the link will have rel=”author” added to it.
How to allow authors to add rel=”me” to links in their bio’s
If you update your bio on a WordPress blog you write on to contain a link to your Google Profile and want to add rel="me", you’ll come to the conclusion that WordPress strips out all the rel elements from links. Why it does that is beyond me, I’ve already opened a Trac ticket and created a patch to allow it. Until that is in core though (if it makes it in), you’ll need to allow it yourself. To do that, simply add this to your site’s functions.php file or functionality plugin:
function yoast_allow_rel() {
global $allowedtags;
$allowedtags['a']['rel'] = array ();
}
add_action( 'wp_loaded', 'yoast_allow_rel' );
This will allow all rel values to be used, nofollow as well. You could tighten this more but I doubt you’ll need it.
How to allow authors to set their Google Profile URL
If you don’t want authors to add the link to their bio but would rather give them an input field to enter their Google Profile URL, you’ll need to hook into the contact methods functions of WordPress. First, tell WordPress you want to add the Google Profile contact method:
function yoast_add_google_profile( $contactmethods ) {
// Add Google Profiles
$contactmethods['google_profile'] = 'Google Profile URL';
return $contactmethods;
}
add_filter( 'user_contactmethods', 'yoast_add_google_profile', 10, 1);
This will add an input field on their edit profile page below the default AIM, Yahoo and Google Talk / Jabber contact methods:

Second, in your theme’s author.php file, the author template, you need to add a bit of code to output this new URL:
$google_profile = get_the_author_meta( 'google_profile' );
if ( $google_profile ) {
echo '<a href="' . esc_url($google_profile) . '" rel="me">Google Profile</a>';
}
Of course you can style this in any way you want, show it in a list, etc. Here on yoast.com, for instance, I replaced the default contactmethods with Facebook, Twitter and the Google Profile.
How to change the author URL
If for one or more authors on your blog you want to change their default author URL, you could do something like this:
function yoast_change_author_link( $link, $author_id, $author ) {
if ( 'admin' == $author )
return 'http://example.com/about-me/';
return $link;
}
add_filter( 'author_link', 'yoast_change_author_link', 10, 3 );
This would change the author URL for the author with username “admin” to http://example.com/about-me/, you should of course change this to what you need in your specific case. This should work with most themes, if it doesn’t with your theme, let me know what theme you’re using and I’ll try to come up with a solution.
How can I test whether my rel=”author” implementation works
Once you’ve added one of this bits above, you probably want to test whether it’s working. To do that, use Google’s Rich Snippets testing tool. You can find an example report showing that my implementation is correct here. See the screenshot:

Now don’t forget to take the last step, keep on reading below the simple version!!
An explanation video from Google
After this post Google’s Matt Cutts and Othar Hansson did a video on the topic, feel free to watch it here:
Update: the simpler version
Because not everyone either has the technical knowledge and/or the actual access to their sites to be able to accomplish the above, Google has made a simpler alternative. I don’t know whether this alternative will work forever, it does work now though. It’s quite simple, just follow these steps:
- Find your Google Profile URL, copy paste it.
- Create a link with that profile URL, and add this ?rel=author to the end of the URL.
- As an anchor text, use your full name with a +, in my case the anchor text would be: +Joost de Valk
- Go to the last step, below the video embedded below.
The full HTML of my profile link would look like this (line break just to make it easier to read, you shouldn’t have that):
<a href="https://plus.google.com/115369062315673853712 /about?rel=author">+Joost de Valk</a>
Of course, there’s a video explaining this version too:
Last (but important!) step
Whichever version of the code you used, be sure to submit your details through this form. You probably won’t get an email back but at some point it (might) suddenly start working!
rel=”author” + rel=”me” actually works!
To show that the markup above works (I use the complete version, not the simple version):





Thanks. I have now sorted out that rel=”author” tag on my “About” page, on my single author blog. But is there any way I can get the author link on each post to link to my “About” page rather than to a meaningless author archive?
Hey Peter,
I’ve added a new section to the post for you with the answer to that question :)
Thank you. I’ll try that. By the way I am using Twenty Ten, should have said that the first time.
Is there a missing step? It shows this on the rich snippet page :
Note that there is no guarantee that a Rich Snippet will be shown for this page on actual search results. For more details, see the FAQ
This is from the Google FAQ :
“Once you have marked up content on the relevant pages across your site and confirmed that the marked up content can be extracted successfully by Google, sign up on the “Interested in Rich Snippets” form.”
http://www.google.com/support/webmasters/bin/request.py?contact_type=rich_snippets_feedback
Do we need to fill out this form?
Yes. For now, you must.
Actually, not that one, there’s another form but don’t bother, Google will do this automatically soon enough :)
If possible can you share that second link also in this article ? Some of us don’t want to wait until google does this automatically.
Could you post a link to the form? I’d like to check it out.
I’m running WordPress 3.1.4. Clicking the “screen options” tag DOES NOT show a “Link Relationship” box at all. Instead it shows boxes for Right Now, Recent Comments, Incoming Links, Plugins, Addthis, Dashboard: Technorati Reactions Extended, Google Analytics Summary, Quickpress, The Latest news from Yoast, Recent Drafts, WordPress Development Blog, and Other WordPress News. So your fine article cannot help me. Frustrating.
You have to do this onece your in the ‘Apperance tab’ and the ‘menus item’
Thanks for the clarification, this was confusing to me as well.
I needed to read this to get the point as well!
Me too. It wasn’t really clear from the article text that I had to do that.
I don’t understand what has to be done in “Appearance tab” and “menu item”?
@Tim: are you on the correct page?
You need to be in appearances > menus.
I found the link.
http://www.google.com/support/webmasters/bin/answer.py?answer=1229920
Scroll to the bottom of the page under the section “One last step”.
My question for you Yoast is: Do you feel highlighting of authors in search will assist in proving the unique source of the content across the web? I know about canonical within your own site, but even after the Panda update I have a serious issue with Google recognizing my content as the original source when pitted against other sites. Scrappers still rank ahead of me, particularly if their site is more authorative (I can give examples if needed). Any thoughts on this?
What a lot of steps. It occurs to me that someone should set up a plugin for this. Unless you know of an existing plugin that will do it all?
Hi, thanks for your post! My theme does not support the menu tab, so I can’t add “author”. How do I change the head section of just one specific page? In this case: only the section of the about me page?
You don’t. You need to make sure all your author links point to your about page with rel=”author”.
The Google Rich Snippets Testing Tool wants an “updated” date field under hentry. Without it, the Tool says:
Warning: Missing required field “updated”.
What if you don’t want to display a date on your author page? If searched around a bit on hcard. The basic idea of the microformat seems to be that computers and human see the same stuff. So does this mean that humans have to see a date on the author page?
Here’s my simple author page:
http://purplemotes.net/author/galbi/
From what I understand hiding text is bad form, but if you want to provide a non-visible updated date on your author page, add in the HTML editor this:
August 27, 2011(use the appropriate date, of course)Ugh… HTML got stripped out. In short, wrap a date with a span element that includes class “updated” and style=’display:none’
By the way, yesterday I tried to post the above comment, but it was rejected as a duplicate comment. Strange.
Does this only work for sites that are built in wordpress or will it also work for php and asp sites?
It’ll work with all types of sites as long as the markup is correct and Google whitelists the author.
Any plans of adding to the Yoast SEO plugin?
In addition to implementing the above (thanks Yoast for the great info), there’s also a Google Authorship Request Form here http://bit.ly/ppzvxY to submit your Google profile. After which, Google can let you know of any implementation issues.
Hey Joost, as far as you might know, the author highlithing feature is limited to certain countries?
Because, i write from italy, and i cannot see any of the author pictures in my searches, nor for my site, nor for your wordpress seo article neither for matt cutts blog too.
it’s limited to .com I think
Yes you’re right, searching for reto meier’s blog into google.com it works, not for google.it instead, that’s sad :/
thank you man, for all your great tips.
Thanks for the great article. I have successfully setup the About Me page, but I cannot get the author’s link on each post to link to my about me page. I have added the yoast_change_author_link code to my functions.php file to no avail. I am using the TwentyTen theme. Am I missing something here?
I was having the same problem and found that the user name in the if statement must be in lower case. I had the first letter capitalized and it didn’t work.
eg: ‘admin’ and not ‘Admin’
I’m using the Mystique theme and placed the code in functions.php
No sure what you mean by the “if” statement. I seem to still be having the problem.
Did all that was detailed here, but how soon should I see the actual result on the search page? the rich snippets tool show’s that the author data is good and verified but no face shows on the right side of the search results.
Anyone else here implemented this method and can confirm it works for him? I’ve seen a reference somewhere that this feature is not rolled out fully to the general public – is that really true?
Anyway – I did it all again from scratch and still can see any author photo next to my articles :(
Ronen, I’m with you. Have it all set up correctly and the snippets tool confirms it. But for me, it’s probably for this reason:
“The site has very few pages (or very few pages with marked-up structured data) and may not be picked up by Google’s Rich Snippets system.”
as mentioned here.
Strangely I got it to work on one blog but not the other. Both are single author blogs.. Followed the exact same steps.. but for some reason the author page that Google finds on my blog is the RSS feed page :(
Hi Joost, thanx for the tutorial. I’ve already implemented the rel=author, rel=me on my blog site (since 2 days ago), but it still wont appear on google search result page (google.com). How long it will take to appear?
Added the author XFN to my menu for about page, but didn’t add the reference to “me” for author profiles yet, at this time I do have it set to rel=”author” for each of the authors articles via some manual modification in the WordPress single.php.
Not all of my authors have Google profiles, it is presumptions for Google to assume everyone has one.
I manage and contribute to a number of multi-author blogs. Instead of having a particular about page for each of us there is usually a “Meet the Team” page.
My question is: will linking to the Anchor tag of a particular author within the page (i.e. randomURL.com/about#author1 ) allow multiple authors on one page that can be correctly verified by Google?
Great article! (I’m referencing it in a post I’m working on now.)
Awesome article. I followed exactly as it is and it worked fine!
The only problem I found out is that when I tested it in Google’s Rich Snippets testing tool I got two results.
One pointing to http://www.pradoseo.com/about-us/ and the other one pointing to http://www.pradoseo.com/author/admin/
What can I do to fix this issue?
Thanks for the tips on this! I’m seeing an issue: I added your code for allowing the rel=”me” tags, however it seems WordPress by default adds a rel=”nofollow” tag to outgoing links, which supersedes the manual rel=”me nofollow” tags I added to the (body) links on my about page:
http://georgecoghill.com/blog/about/
Google’s Rich Snippets Testing Tool also shows this page (and others) as an “empty page”:
The following errors were found during preview generation:Empty page.
Insufficient data to generate the preview.
Here is the HTML I see in View Source of the live page:
Google ProfileCrud, it parsed the link; here is the code:
Google ProfileSorry for the duplicate replies, WordPress parsed my code each time.
To follow up, it seems thatit was a glitch on Google’s end of things — my rel=”me” links are now showing up fine.
The only issue I am seeing now is that the SGAPI recrawl tool isn’t registering my WordPress about page as linked to my Google Profile, which it most certainly is. All my other sites are working fine.
I discovered that WordPress adds a rel=”nofollow” to each outgoing link, which sits at the beginning of each link code snippet, with the rel=”me” (after performing your tips) being added alter on in the link code. Could the positioning of the rel tags have something to do with this? Or should I be looking elsewhere?
Turns out I had a plugin that was adding nofollow to all external links. Oddly, after turning that off (and verifying in the View Source), I was able to get the Rich Snippets to verify my author page (and authorship on other pages), but the SGAPI tool still showed no link. A day or so later, Rich Snippets no longer saw the author links.
Wondering if this has anything to do with the W3 Total Cache plugin. I flushed the cache each time, but didn’t seem to affect anything. I’m flummoxed.
Does do-follow has anything to do with it? Google should be able to crawl and index do-follow link?
Thanks for the great tutorial.
I’m a LITTLE confused, however.
I’ve linked from profile to author page and vice versa. I have the google + button in my sidebar. How do I get the rel=”me” into every post?
Can I just change the url destination of my name in the byline?
Hi again!
Just saw the “How to change the author URL” section you added. Thanks!
Does that bit of code go in the functions.php file?
Also, will changing the author url to point to my about page fulfill the requirement?
I’ve got the code pointing to my google profile on my about page. I’ve got my Google proflie pointing to my about page. Now, all that’s lacking is to point each post to my about page, right?
I appreciate your patience!
Just got this going tonight in a big post on Google+, rel=me and the +1 button (and linked to this post as well). Thanks Joost!
Michelle…yes..I read this ON your blog..(on your list)
BUT..damn…what if you have a theme that ..and I quote..
“The current theme does not natively support menus, but you can use the “Custom Menu” widget to add any menus you create here to the theme’s sidebar.”
Yes..I know..I SUCK at stuff like this..BUT I soooo want to get this going…omg..I have such a headache…
Maybe YOU can convince someone to design a plug in to do this!!!…add the code and such…YOU have far reaching powers!!! and by the way..meant as a sincere compliment
Gary
Excellent post, just got this working too. Thanks Joost and thanks Michelle for leading me to this post!
Adding that line of code to my functions.php file screwed up my site. I now can’t even log into WordPress. It’s fixed now but I think the theme I was using hated the addition to the code. A nice, easy plugin for this function would be great.
Okay, I am the newbie here and when I log in to the back end I do not even see the section that shows ” Show advanced properties.” I have the most recent updated version of wp installed. Any suggestions or tips to how I can see the advanced features?
Hi..nice article..
Is there any way if i can use it for my BLOGGER/ blogspot blogs ?
I searched but could not find any..
Thanks
Sangram
For whatever reason I can’t seem to find my authors page in dashboard. Any suggestions on where I should be looking for it?
I believe the page you are looking for is titled “Users” in the dashboard.
I am trying to add this to my site, but found that I do not have an “author.php” file in my theme. Any suggestions? Thanks!
Hey Blake,
I had the same problem. Turns out that there is a hierchy within WordPress and if you don’t have an “author.php”, then WordPress will default to either “index.php” or “archive.php”
I tried 2 different styles both the times i got :
“Warning: This information will not appear as a rich snippet in search results results, because it seems to describe an organization. Google does not currently display organization information in rich snippets”.
I also got : “Warning: The information will not appear as a rich snippet in search results, because the marked-up content does not appear to be the main focus of the page. More information. (Is this correct? Let us know.)”
What am i missing ?
regards,
Jimmy Thakkar
Edit: I managed to get everything working. I filled out the form to get accepted, but do not really expect to. It seems to only be for review sites and the likes, not informational sites. I only have one review on my site :(
How fast did this site get accepted?
I also found this little helper http://onemansblog.com/2011/07/05/wordpress-plugin-enable-rel-and-other-html-in-authors-field-for-google-and-google-search-listings/
All my post have a default author page as http://worldwidecode.wordpress.com/author/shubhanchemburkar/ but i cannot cahne or modify it to add a rel=”me” link . Can anyone help?
Do you know how long does it take to display a picture within the search results.
I noticed that you appear when searching as per your example above.
I’ve tested on the Rich Snippets Testing Tool which works perfectly but my image doesn’t show yet on search results.
I followed the tutorial, which is great thank you! I am having trouble though. My theme doesn’t support menus, so I made a custom menu for my author page. I put in the code, but it is not showing up in the source code. Any ideas? I do have a plugin that puts no follows in, but I wouldn’t think that would stop the code from going in. help!
It’s so cool but my website is not a wordpress site, nor is based on any other CMS.. It’s independent. Will it work on my site and how I can do it? Thanks
Great :)
Are you planning on releasing a plugin to help implementing this on our WordPress sites? :)
Got lost somewhere in the middle of the instructions …
Did the first step and added the Link Relationship (XFN) rel=”author”
Added the rel=”me” code to the functions.php as it’s listed.
The Google Profle input field is now appearing under the contact info.
Here’s where I’m stuck … My theme doesn’t seem to have an author.php file for that final step. Could it be under a different title? I’m using a Woo theme, delicious magazine. I’m still getting this error: “Error: Author profile page does not have a rel=me link to a Google Profile”
Website: http://www.TheTravelBite.com
Thank you for your help!
Hi Joost,
How can I add author.php on my theme? Can I simply put the codes that I find in wordpress site that upload it on my theme folder? Please Help
Thanks
Charllotte
Hi,
I had to pass the author id to the
get_the_author_meta()function call to get it to work.Like so:
<?php
$google_profile = get_the_author_meta( 'google_profile', intval($author) );
if ( $google_profile ) {
echo '<a href="' . $google_profile . '" rel="nofollow">Google Profile</a>';
}
?>
Thanks for the tutorial/info.
Bradley
Thanks for a great article, I’m not sure I could of done it using just what Google post. Although I am confused when and why the photos show up. Are there rules Google follows to show the photos?
Hi Yoast,
I really love reading your articles but this one I’m struggling to implement. Linked google to my web site OK but I’m using the Thesis theme and it seem to have automatically created an author page. (http://napleslocations.com/author/Steve)
When I run the test tool, it returns the message
Extracted Author for this page
author
linked author profile = http://napleslocations.com/author/Steve
Error: Author profile page does not have a rel=me link to a Google Profile (learn more)
As I didn’t create it and don’t know how to access that page to add the rel=me link to it?
I would really appreciate your help and guidance to complete this.
Hi Yoast,
I have the site that I want to use this rel=author. I am using Corporate Theme and I have found that there is default Nav Bar so it dont need Menus at all. Any help on this? Thank you so much!
OMG..I feel so ignorant……HOW do I get to the MENUS page that you talk about??…Damn..Ive been clicking ALL over my DASHBOARD..Links..Posts…Pages…cant find The MENUS!!…Can someone .clue me in??…yeah..I know..I’m a NOOB!! and I need help!!
Gary
Ok Joost…
FOUND IT…Now…as always..it seems I DONT have theme that natively supports MENUS……
This is what it says…
The current theme does not natively support menus, but you can use the “Custom Menu” widget to add any menus you create here to the theme’s sidebar.
CRAp..I SOOOOO suck at this!!!
Flexsqueeze is my theme…
Joost..I think YOU should make a PLUG IN that does this!!!!
ID PAY FOR IT!!!…..because I dont want to sh*tcan my theme!!
Crap..
ANY HELP..from anyone..would be dearly appreciated
Gary
and by the way..arrived here via Michelle McPhearsons post regarding this…
First, create an “About Me” page that links to your Google profile page with a rel=”me” tag. Then create a custom menu that links to your “About Me” page with a rel=”author” tag (he shows how to make the rel=”author” tag in the post). Finally, go to the widget page in your dashboard and put a custom menu widget in the sidebar.
Hope this helps :)
Blake
Blake!! Thank you so much, I was going crazy and i just needed to add that widget! Thanks so much! Now I just have to get my google profile linked!
Blake..Thank YOU!!!
I was good up till the Menu stuff..Then I was flummoxed!! because my screen wasn’t looking like Yoasts and I panicked!!..YIKES!!..ahhhh….custom menu widget!!..OK!!..THAT I can do!! Thank YOu..Thank You..Thank you!!
Gary
Awesome guys. Glad I could help!
if your theme doesn’t support WordPress custom menus – get a better theme.
Gary B..OK..got any suggestions??…..I have a theme called Flexsqueeze..the initial version costs 76 bucks..NOT cheap..BUT it can be highly customized and it looks pretty!!..FOOK getting a new theme…Ive got 15 sites running…screw that idea
Hi Gary Earle
I’m using Flexsqueeze as well. Have you learned how to do this? Any Ideas? The author tag is important and I’d like to add it!
Oh well.So much for any help in this joint…I guess this post must be old news now..sheesh…
Hi, how about if the theme has its default Menus for Nav Bar? And it dont needs to set up Menu Bar? I need your answer! Thank you so much!
I did all that, and it doesn’t work. Says:
Extracted Author for this page
author
linked author profile = https://profiles.google.com/104990311971951718638
google profile = https://profiles.google.com/104990311971951718638
Error: Google Profile does not link to article site (learn more)
Why Google doesn’t link my Profile to article site? I checked that checkbox “This page is specifically about me”. Link on single post to about page with rel=”author”, link to google profile from about page with rel=”me” . Pasted all that code you wrote. What should I do? Thanks.
Try linking from a menu and check that box he says to check instead of linking from a single post. If you just want it for one post I have no idea about a solution…
I found the solution. If you type in Rich snippets testing tool just your website name, it will not work. But if you type “http://” before, it will. Now it works for me. Great article, thanks!
This works for me too – thanks for the tip
I got “Warning: The information will not appear as a rich snippet in search results, because the marked-up content does not appear to be the main focus of the page. More information. (Is this correct? Let us know.)”. Anyone have thoughts on what happened?
Hey Joost, Sadly the Yoast rel fix does not work on Atahualpa. It makes the functions.php file very unhappy and we had to upload a clean version to make the site work again. However, I got both my other sites on different themes to work so thank you :)
As an author, I am not sure how to add the tag to pieces I submit using wo
Thanks for getting me through this one, man. Almost nobody knows anything about this. The few who know are unable to explain it. Ya done good!
Thanks! Works like a charm, finally :)
Hi Joost
Re-looked again at the chain of dependencies you allude to e.g. article links to author page, author page to Google profile and that profile in turn links back to my author page.
In my case I’ve done all of the above and checked all the links, yet my mugshot isn’t appearing next to my articles in Google.
Am I being thick and missing something obvious?
Here’s a relevant example:
Article page…
http://ennclick.com/blog/web-contents-move-hps-woes
Links to Author page…
http://ennclick.com/author/ralph
In turn links to Google Profile page…
https://profiles.google.com/105267125809288877417/about
When then links back to author page…
http://ennclick.com/author/ralph
Any ideas what bit I’m not doing right?
Cheers
Ralph
ENNclick.com
Hi Ralph, if you check the snippets testing tool:
http://www.google.com/webmasters/tools/richsnippets?url=http://ennclick.com/blog/web-contents-move-hps-woes
you’ll see it gives two errors:
1. the link to the author page is wrong (it redirects the last / out of it)
2. the link to your Google Profile is lacking rel=”me”.
Thanks Joost
Worked! At least it did in the webmaster tools preview – not seeing it in the actual search results, though I note it says there’s no guarantees it will be used in main results.
But at least it’s there and works should it be used in the future.
Thanks and all the best,
Ralph
ENNclick.com
Hi,
I implemented this some time ago after reading your article.
Everything seems OK on the Rich Snippet Testing Tool:
http://www.google.com/webmasters/tools/richsnippets?url=http://www.mondo3.com/cellulari-terminali/nokia/2011-08-17-ecocompatibilita-c3-swisscom.html
but the image does not show up in search results.
I also inserted a request on the Google Spreadsheet linked above.
After more than 1 month, still nothing. What could be wrong? :(
Well to be honest, nothing is wrong, it looks good. I do know though that Google wants you to use a headshot for that profile picture, so I’d suggest changing that. They asked me to change my normal avatar into a photo of myself before they enabled it. Do realize that at the moment this is still very much a manual vetting process on the side of Google too though, so it might take some time!
I changed my profile pic and re-submitted the request to Google.
Hope they will get in touch with me this time.
Or maybe there is a lot of people now asking for this and they are waiting to implement an automated process before accepting new authors.
Anyone got into this in the last month?
Thanks for the info, but I did not take much importance the issue of copyright, since you mentioned that is important to Google, I have to do steps that are teaching eses.
Do you think I could add this as re=”me author nofollow” ?
Thanks for the great article. I am sure I wouldn’t have figured out this process on my own.
Thanks. I would not have known to do this without your help. The setting is very well hidden within WordPress so let’s hope they change this soon.
I have multiple authors, can i use these tips?
basically, my theme doesn’t support “Link Relationship (XFN)” but finally i can fix it and i try to applied the code, but not resolved.. i have use Theme Name: BlogNews
from gabfirethemes.com .. may u help me please..
thanks
Does this mean that I will need to use my real name on every website that I have? In other words, I want to use my name only on my personal website, and for my review/commercial website, I want to use a pen name. Is it possible to do that with a single Google profile?
As always, awesome post and thanks once again for contributing so much to the WordPress community!
-Steve
Hi,
I am using the “Modernist” theme and when I run the Google Snippet tool the author page it points to is like below
Extracted Author for this page
author
linked author profile = http://www.ataracticmind.com/feed/rss/
Error: Author profile page does not have a rel=me link to a Google Profile (learn more)
I have followed all the steps in the article and got it to work on my other blog but not this one.
Any ideas how can I change it?
Please help.
Thanks.
Again an awesome post. This is really a cool feature.
Thanks alot :-)
Great article. I wasn’t concerned about this before.
Amazing explanation, loved your post. It is simple, but differently from before, we should now put our faces in our blogs, really claim authorship and be respected for what we write.
Someday I just hope to have my face along posts, just like Pete from Mashable and so on.
I too encountered the “Error: Author profile page does not have a rel=me link to a Google Profile”. i tried both the long and simple versions with the same results. I have my Google +1s and profile links all public, and the top link is to my domain. I’m sending my author info to /speaking. Ideas would be greatly appreciated.
On your speaking page you’re using rel=author on the link, whereas you should have rel=”me” on the anchor…
Thanks. I’ve tried both ways. I also tried the long and also simple directions. I just switched to =me, and pinged Rich Snippet tool again with no change in the error message. I’ll check back in a few hours to see if it switched yet.
thanks that was perfect
I’m confused. Are we supposed to link to the Google Profile page or to the Google+ page? If we’re supposed to link to the Google+ page, then how are we supposed to merge the Google Profile page with the Google+ page?
You’re supposed to link to your Google Profile page, which is now a part of Google+. Check this site for how it’s implemented, you know that works :)
Thanks, Joost. That solves my question. I was confused by the duplication between the old Google profile page and the Google+ page. I’m still curious why my old Google profile page is independent from my Google+ profile page. The old Google profile page even allows me to add “+1′s” to posts just like my Google+ profile page.
Thanks, really needed that info to implement it on my blog.
Ummm there is no authors.php to put that code to add the Google Plus box, I looked at anything close to it and there is only admins.php but it seems like there is no place for that code. So where do I put the code to add my profile?
I have a duplicate email problem with Google+. (a) I used my gmail account to originally set up my Google Profile page several months ago. If I use this gmail address, when I click the “+1″ button for an article, the article and +1 is recorded on the Google Profile page. (b)I set up my Google+ account using my Yahoo email address. If I log in using this address when I click the like “+1′ button for an article, then it gets listed in my Google+ profile page. (c)So I have different articles with “+1″ showing up on different pages, some on Google Profile pages and some on Google+ profile pages. Can I somehow merge these pages? If not, how can I fix this problem?
Can someone help me to figure out why the Rich Snippet tool is extracting the author page as http://www.ataracticmind.com/feed/rss/?
Please advise.
Thanks.
If you have multiple authors, you will have to add
rel="author"to the link leading to the author’s page.I’m not sure this is made clear from this article.
If so, I have missed it time and time again.
I struggled a lot to figure out why our articles weren’t being picked up, but adding that to solved everything.
First thanks to Yoast for doing this post – very awesome of you. Can’t wait to see more of this in the WordPress SEO plugin.
Second, we’ve had a plugin developed for everyone using the Genesis theme. It implements Yoast’s code and turns your name in the author box into a rel=”author” link to your Google+ profile.
You can grab the plugin on today’s post: Free rel=”author” Plugin For Genesis Theme Users
Thanks. This was helpful. I read two other older articles as well but couldn’t publish comments there- appreciate the free consulting! :-)
This is the most comprehensive post that I have seen on the topic so far! I’m still a little confused whether and where the “+” is needed in the text because I am seeing conflicting views (and most say it isn’t needed at all…yet the form asks about it).
I installed this plugin a few days ago for Thesis: http://www.tricia.me/2011/09/03/relauthor-plugin-for-thesis/
Unfortunately, I’m still waiting around to get approved before I can tell if actually worked. The Rich Snippets Testing tool shows it worked but I’m not going to count on it until I see the search results with my picture.
Help,
I have my own website on WordPress and as I am the only one who writes on it I followed Google’s latest advice and put a g+ button onto the site as a widget so it would appear on every page automatically and link back to my profile. However it still doesn’t work as it should with regards to the rel=author stuff. I tested a link to one of my articles using the Rich Snippets tool, and it just keeps telling me:
“This page has both rel=author and rel=me links. Please do not use rel=me links for a non-profile page.” (even though I have no other links apart from my g+ button which was generated using the tool on Google’s own site, and is certainly not rel=me)
and then further down it says:
“author
linked author profile = http://grow-vegetables-at-home.com/about-me/
Error: Author profile page does not have a rel=me link to a Google Profile” (which is not supposed to be necessary if you are using the g+ button and are the sole contributor on the site according to http://www.google.com/support/webmasters/bin/answer.py?answer=1408986).
I am at my wits end with this and have spent over four hours trying to solve the problem numerous ways, including not using the g+ button at all and instead following the advice here that says to check the ‘link relationship (xfn) option and then add ‘author’ to the box that now appears under the ‘About Me’ information in the Menu settings.
Whichever way I do it I get the same error messages in the Rich Snippets Tool results, and I don’t know how to solve it. Can you help me at all please.
Thanks
Regards
Cindy