Archived topic
just above my title
3 replies · Started by Ron on December 18, 2021
I was looking at my website source code and just before the title name this line of code is present
`<link rel="profile" href="https://gmpg.org/xfn/11">
what is it is it necessary if not can it be removed and how
Hi there,
It's for site semantics.
See a brief explanation here -
https://wordpress.stackexchange.com/questions/173117/why-is-there-a-link-tag-with-rel-profile-pointing-to-gmpg-org/262632#262632
More from the source -
http://gmpg.org/xfn/
It's hard coded on the theme's header.php
https://github.com/tomusborne/generatepress/blob/master/header.php
It's really up to you if you wish to remove it.
As for actually removing it, you'll need to create a child theme and copy the header.php on the child theme's root folder.
You then edit this child theme copy of header.php, removing that line of code.
Thank You Elvin
after reading the explanation I will leave it alone
Ron
No problem. :D