Jekyll SEO Tag

Advanced usage

Jekyll SEO Tag is designed to implement SEO best practices by default and to be the right fit for most sites right out of the box. If for some reason, you need more control over the output, read on:

Disabling <title> output

If for some reason, you don’t want the plugin to output <title> tags on each page, simply invoke the plugin within your template like so:

{% seo title=false %}

Author information

Author information is used to propagate the creator field of Twitter summary cards. This should be an author-specific, not site-wide Twitter handle (the site-wide username be stored as site.twitter.username).

TL;DR: In most cases, put author: [your Twitter handle] in the document’s front matter, for sites with multiple authors. If you need something more complicated, read on.

There are several ways to convey this author-specific information. Author information is found in the following order of priority:

  1. An author object, in the documents’s front matter, e.g.:
  author:
    twitter: benbalter
  1. An author object, in the site’s _config.yml, e.g.:
  author:
    twitter: benbalter
  1. site.data.authors[author], if an author is specified in the document’s front matter, and a corresponding key exists in site.data.authors. E.g., you have the following in the document’s front matter:
  author: benbalter

And you have the following in _data/authors.yml:

  benbalter:
    picture: /img/benbalter.png
    twitter: jekyllrb

  potus:
    picture: /img/potus.png
    twitter: whitehouse

In the above example, the author benbalter’s Twitter handle will be resolved to @jekyllrb. This allows you to centralize author information in a single _data/authors file for site with many authors that require more than just the author’s username.

Pro-tip: If authors is present in the document’s front matter as an array (and author is not), the plugin will use the first author listed, as Twitter supports only one author.

  1. An author in the document’s front matter (the simplest way), e.g.:
  author: benbalter
  1. An author in the site’s _config.yml, e.g.:
  author: benbalter

Setting author url

Starting from August 6, 2021 Google recommends to set the author.url property. This property helps Google to disambiguate the correct author of the article.

You can set it the same way as the other author properties. For example, you can put it in an author object, in the site’s _config.yml, e.g.:

  author:
    name: My Name
    url: https://example.com/

Customizing description length

By default, the description is limited to the first 100 words of the full content.

You can adjust this limit at the page level, by using the seo_description_max_words page property:

  seo_description_max_words: 200

You can also set a default site-wide value for all pages using Front Matter defaults in your _config.yml file:

defaults:
  - scope:
      path: ""
    values:
      seo_description_max_words: 200

Customizing JSON-LD output

The following options can be set for any particular page. While the default options are meant to serve most users in the most common circumstances, there may be situations where more precise control is necessary.

Customizing image output

For most users, setting image: [path-to-image] on a per-page basis should be enough. If you need more control over how images are represented, the image property can also be an object, with the following options:

You can use any of the above, optional properties, like so:

image:
  path: /img/twitter.png
  height: 100
  width: 100
  alt: Twitter Logo

Setting a default image

You can define a default image using Front Matter defaults, to provide a default Twitter Card or OGP image to all of your posts and pages.

Here is a very basic example, that you are encouraged to adapt to your needs:

defaults:
  - scope:
      path: ""
    values:
      image: /assets/images/default-card.png

SmartyPants Titles

Titles will be processed using Jekyll’s smartify filter. This will use SmartyPants to translate plain ASCII punctuation into “smart” typographic punctuation. This will not render or strip any Markdown you may be using in a page title.

Setting customized Canonical URL

You can set custom Canonical URL for a page by specifying canonical_url option in page front matter. E.g., you have the following in the page’s front matter:

layout: post
title: Title of Your Post
canonical_url: 'https://github.com/jekyll/jekyll-seo-tag/'

Which will generate canonical_url with specified link in canonical_url.

<link rel="canonical" href="https://github.com/jekyll/jekyll-seo-tag/" />

If no canonical_url option was specified, then uses page url for generating canonical_url. E.g., you have not specified canonical_url in front matter:

layout: post
title: Title of Your Post

Which will generate following canonical_url:

<link rel="canonical" href="https://example.com/title-of-your-post" />

Customizing title modifier for paginated pages

You can override the default title modifier for paginated pages from Page %{current} of %{total} for to a string of your choice by setting a seo_paginator_message key in your _config.yml.

For example:

seo_paginator_message: "%<current>s / %<total>s | "

While the value can be any string text, we recommend using a Ruby string-template containing the variables current and total similar to the example above, to incorporate the current page-number and total number of paginated pages in the title.