jekyll/jekyll-seo-tag

I can't get og:site_name to update to my custom URL

Closed this issue · 3 comments

My _config.yml is

url: https://learnfromit.co
tagline: My daily struggles with code
logo: /assets/images/favicon.png

plugins:
  - jekyll-sitemap
  - jekyll-seo-tag

github: [metadata]

defaults:
  - scope:
      path: ""
      type: "posts"
    values:
      layout: "post"
      author: "Brett"

And in the head it is
<meta property="og:site_name" content="brett9897.github.io">
and if that isn't the property that updates, what does update that?

Also the tagline and logo aren't picked up either but that isn't a big deal. Am I missing something?

As far as I know, site.title updates the og:site_name property. So:

  • site.title will be interpreted as the property og:site_name (Code)
  • page.title will be interpreted as og:title (Code)

For the tagline, maybe take a look at this issue & comment

Thank you. That cleared things up.