Corrected meta for "description" (patch for #7206)
It should be `name`, not `property`. Copy-paste error from the OG version.
This commit is contained in:
parent
a5caf57116
commit
4f07867f8f
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ function buildOgMetadata(overrideOptions = {}) {
|
|||
const cleanDescription = removeMd(description || SITE_DESCRIPTION);
|
||||
const head =
|
||||
`<title>${SITE_TITLE}</title>\n` +
|
||||
`<meta property="description" content="${cleanDescription}" />\n` +
|
||||
`<meta name="description" content="${cleanDescription}" />\n` +
|
||||
`<meta property="og:url" content="${URL}" />\n` +
|
||||
`<meta property="og:title" content="${title || OG_HOMEPAGE_TITLE || SITE_TITLE}" />\n` +
|
||||
`<meta property="og:site_name" content="${SITE_NAME || SITE_TITLE}"/>\n` +
|
||||
|
|
Loading…
Reference in a new issue