Tagged: author
Actually the theme always use the tag rel=”author” , and i would like to control or disable this , Where can i find it?
<link rel=”author” href=”https://plus.google.com/u/0/number”/>
This problem happens, when you configure in the header option, the profile for Google Plus, The themes will always add the meta tag, rel=”author”
For SEO / Author propuse, it will be ok if you have a simple blog, and the author has a profile and is unique.
But for multiuser and even for business pages, that will have a conflict with the authority.
I suggest to disable this tag.
Hi,
Edit function-enfold.php, find this code
if(!empty($url))
{
//add author url as described here: http://yoast.com/push-rel-author-head/
echo '<link rel="author" href="'.$url.'"/>';
}
Regards,
Ismael
Thanks .