XF 1.1 can we implement for user profiles rel=”author” + rel=”me”

It says you can add it to the "head". In XenForo this is done by editing the content template:

Admin CP -> Appearance -> Templates -> member_view

Add this at the top:

Code:
<xen:container var="$head.relauthor">
	<link rel="author" href="{xen:link 'full:members', $user}" /></xen:container>

That will add the rel="author" tag to the <head> of profile pages. I think that's what you want.
 
I'm curious if this will be added to the official version any time soon? The only problem is there has to be a rel="me" (or is it a rel="author") pointing from the posts to the user profile.
 
Top Bottom