Closed Daandelange closed 1 year ago
@Daandelange Thanks for all the input. I’d be happy to investigate this further, but unfortunately I am currently lacking the resources to work on implementing any of these. But let me try to give quick feedback:
i. Great idea, but date handling is tricky. Maybe create a separate issue ii. Opt-in if at all. Not used by Google anymore, maybe just relevant for things like Algolia. Would not implement this. iii. Rating can also be defined via JSON-LD, would not add it
As far as I know, most of these have fallbacks to other meta information (e.g. locale and content-language), so I wouldn’t bother. The last one (ix.) is very specific and opinionated and belongs into a Twitter-related plugin, not a general SEO solution.
Are the tags from viii. actually used by anything?
i. Please go ahead if youlike ii. This should be part of the plugin already or am I missing anything? iii. I would need more background information to make a decision and whether this has some real-world benefit iv. I added the theme-color option because that is something that is easily forgotten. If someone needs more fine-grained control, it can be added for individual project using a hook or written directly into the template. So I would not add it. v. Is this used by anything? If so, I’d be happy to add it to the plugin.
Thanks for your feedback.
provideExtendedMultilanguageMetaData
option ?
1.i.: The main reason why I do not want to add this, is that there’s no standardized way in Kirby of supplying copyright information. So tapping into this calls for trouble/unwanted side-effects.
1.iii.: Yep, those who need it probably already know about it. :-)
2.JSON-LD: I think this just adds a bit of bloat, unless there’s some real-world benefits.
2.i.: See 1.i.
2.ii.: All of my current projecteds are served via HTTPs and seemingly, providing the secure_url
does not provide any additional benefit, as OpenGraph images work fine either way. I guess, this is a leftover from the era before nearly everything was served via HTTPs.
2.iii.: There’s already a field in the metadata settings for that
2.iv, 2.v, 2.vi: Let’s add always add these, see #26. But this needs an additional API, because in some projects I got settings to hide additional languages or pages if translation is incomplete (and I am probably not the only one who needs this).
3.i.: Created a ticket, see #27
3.ii: Default value of robots is "all", so it is only necessary to tell crawlers what is disabled. I’ve opted to output <meta name="robots" content="all">
instead of omitting the robots tag to avoid confusio, see 7c7c42b
I am closing this now, since we got 2 separate tickets for the remaining tasks. Thanks for your input. :-)
Hello, Do you have any plans on adding some extra meta tags ? If so, would you like some help ?
Here's a list of some suggestions I could think of. Some could be optional (like Twitter), others on by default.
Tags needing extra data fields :
<meta content="Copyright 2012-2023 My Organisation" name="copyright">
A content copyright indicator. Use a startyear, current year and owner name ? Or just a free field.
<meta content="keyword1, keyword2" name="keywords" lang="en_GB">
Keywords, similar to the meta description.
<meta content="general" name="rating">
&<meta content="global" name="distribution">
Content rating & distribution tags.
<meta content="XXX" http-equiv="Last-Modified">
Last modified date.
Alternatives of existing data fields :
<meta content="" name="owner">
&<meta content="" name="author">
Site owner and content author as meta tags.
og:image:secure_url
Alternative
og:image
for HTTPS protocols.og:description
OG content description (similar to the
og:title
).og:locale
,og:locale:alternate
Available translation indications.
<link href="XXX" hreflang="en_GB" rel="alternate">
&<link href="XXX" hreflang="x-default" rel="alternate">
Available translation indications + default language.
<meta content="en_GB" http-equiv="content-language">
Current locale indicator
<meta content="Site Title" name="application-name">
&<meta content="XXX" name="apple-mobile-web-app-title">
Some smartphone integration hints. Similar to the theme color for browsers.
<link href="://url/" rel="start" title="Home Title">
&<link href="://url" rel="prev" title="PrevSiblingTitle"> &
`Siblings navigation hints.
<meta name="twitter:dnt" content="on">
Twitter DNT protection for your visitors. more info.
Improvements of existing tags :
<meta content="image/png" property="og:image:type">
Indicates the filetype of the OG image.
<meta content="Index,Follow,notranslate" name="robots">
Crawl settings in the meta tags.
<meta content="no-cache" name="cache-control">
&<meta content="14 days" name="revisit-after">
Sitemap priority & cache control settings as meta tags.
<meta content="#000" media="(prefers-color-scheme: dark)" name="theme-color">
Additionally indicate the light/dark setting for some browsers.
<link href="http://xxxx/sitemap.xml" rel="sitemap" title="sitemap" type="application/xml">
The sitemap linked in the meta tags.