Change from meta name to meta property
-
For: https://coachrubarcelona.com/text/1402/registratsiya-20-10-2016/
facebook og debugger complains in the following way:Warnings That Should Be Fixed
? Meta with name instead of property
? The meta tag on the page was specified with name ‘author’, which matches a configured property of this object type. It will be ignored unless specified with the meta property attribute instead of the meta name attribute.Obviously, this traces back to the following entry in the html:
<meta name=”author” content=”Ирина Фьелльнер Патлах”/>Which, in turn is enabled on the page SEO tags settings of Facebook Open Graph, Google+ and Twitter Card Tags (2.0.3).
Option: Include Post/Page Author nameSuggested changes (If you believe facebook debugger is correct about this…):
options-page-seo.php:66
<i><meta name=”author” content=”…”/></i>
–> <i><meta property=”author” content=”…”/></i>class-webdados-fb-open-graph-public.php:612
…<meta name=”author” content=… –> <meta property=”author” content=
- The topic ‘Change from meta name to meta property’ is closed to new replies.