Skip to main content

SEO

About 4 minAdvancedAdvancedSEO

vuepress-theme-hope provides SEO enhancements via built-in @vuepress/plugin-seoopen in new window.

To make the plugin work better, you may need to check the page config and configure them properly.

Info

vuepress-theme-hope passes plugins.seo in theme options as plugin options to @vuepress/plugin-seo.

The plugin will make your site fully support Open Content Protocol OGPopen in new window and JSON-LD 1.1open in new window to enhance the SEO of the site.

If you don't need this plugin, please set plugins.seo to false in theme options.

Out of Box

The plugin works out of the box. Without any config, it will extract information from the page content as much as possible to complete the necessary tags required by OGP and JSON-LD.

By default, the plugin will read the site config and page frontmatter to automatically generate tags as much as possible. Such as site name, page title, page type, writing date, last update date, and article tags are all automatically generated.

The following are the <meta> tags and their values that will be injected into <head> by default:

Default OGP Generation

The following are the <meta> tags and their value injected into <head> by default to satisfy OGP:

Meta NameValue
og:urlthemeConfig.hostname + path
og:site_namesiteConfig.title
og:titlepage.title
og:descriptionpage.frontmatter.description || auto generated (when autoDescription is true in plugin options)
og:type"article"
og:imagethemeConfig.hostname + page.frontmatter.image ||first image in page || fallbackImage in plugin options
og:updated_timepage.git.updatedTime
og:localepage.lang
og:locale:alternateOther languages including in siteData.locales
twitter:card"summary_large_image" (only available when image found)
twitter:image:altpage.title (only available when image found)
article:authorpage.frontmatter.author || themeConfig.author
article:tagpage.frontmatter.tags || page.frontmatter.tag
article:published_timepage.frontmatter.date || page.git.createdTime
article:modified_timepage.git.updatedTime

Default JSON-LD Generation

Property NameValue
@context"https://schema.org"
@type"NewsArticle"
headlinepage.title
imageimage in page || themeConfig.hostname + page.frontmatter.image || siteFavIcon in plugin options
datePublishedpage.frontmatter.date || page.git.createdTime
dateModifiedpage.git.updatedTime
authorpage.frontmatter.author || themeConfig.author

Setting Tags Directly

You can configure the head option in the page's frontmatter to add specific tags to the page <head> to enhance SEO.
For example:

---
head:
  - - meta
    - name: keywords
      content: SEO plugin
---

Will automatically inject <meta name="keywords" content="SEO plugin" />.

Customize Generation

The plugin also gives you full control over the build logic.

Page Type

For most pages, there are basically only two types: articles and website, so the plugin provides the isArticle option to allow you to provide logic for identifying articles.

The option accepts a function in the format (page: Page) => boolean, by default all non-home pages generated from Markdown files are treated as articles.

Note

If a page does fit into the "unpopular" genre like books, music, etc., you can handle them by setting the three options below.

OGP

You can use options plugins.seo.ogp in theme options. To pass in a function to modify the default OGP object to your needs and return it.

function ogp(
  /** OGP Object inferred by plugin */
  ogp: SeoContent,
  /** Page Object */
  page: Page,
  /** VuePress App */
  app: App,
): SeoContent;

For detailed parameter structure, see seo plugin configopen in new window.

For example, if you are using a third-party theme and set a banner in frontmatter for each article according to the theme requirements, then you can pass in the following ogp:

seoPlugin({
  ogp: (ogp, page) => ({
    ...ogp,
    "og:image": page.frontmatter.banner || ogp["og:image"],
  }),
});

JSON-LD

Like OGP, you can use plugins.seo.jsonLd options in theme options to pass in a function to modify the default JSON-LD object to your needs and return it.

function jsonLd(
  /** JSON-LD Object inferred by plugin */
  jsonLD: ArticleSchema | BlogPostingSchema | WebPageSchema,
  /** Page Object */
  page: Page,
  /** VuePress App */
  app: App,
): ArticleSchema | BlogPostingSchema | WebPageSchema;

If you are deploying your content to different sites, or same content under different URLs, you may need to set plugins.seo.canonical in theme options to provide a "Canonical Link" for your page. You can either set a string which will be prepended before page route link, or adding a custom function (page: Page) => string | null to return a canonical link if necessary.

Example

If your sites are deployed under docs folder in example.com, but available in:

  • http://example.com/docs/xxx
  • https://example.com/docs/xxx
  • http://www.example.com/docs/xxx
  • https://www.example.com/docs/xxx (primary)

To let search engine results always be the primary choice, you may need to set plugins.seo.canonical to https://www.example.com/docs/, so that search engine will know that the fourth URL is preferred to be indexed.

Customize head Tags

Sometimes you may need to fit other protocols or provide the corresponding SEO tags in the format provided by other search engines. In this case, you can use the plugins.seo.customHead in theme options, whose type is:

function customHead(
  /** Head tag config */
  head: HeadConfig[],
  /** Page Object */
  page: Page,
  /** VuePress App */
  app: App,
): void;

You should modify the head array in this function directly.

RDFa 1.1

The theme adds rich media structure support to most of the site structure by following RDFa 1.1open in new window.

SEO Introduction

Search engine optimization (SEO) is the process of improving the quality and quantity of site traffic to a site or a web page from search engines. SEO targets unpaid traffic (known as "natural" or "organic" results) rather than direct traffic or paid traffic. Unpaid traffic may originate from different kinds of searches, including image search, video search, academic search, news search, and industry-specific vertical search engines.

As an internet marketing strategy, SEO considers how search engines work, the computer-programmed algorithms that dictate search engine behavior, what people search for, the actual search terms or keywords typed into search engines, and which search engines are preferred by their targeted audience. SEO is performed because a site will receive more visitors from a search engine when sites rank higher on the search engine results page (SERP). These visitors can then potentially be converted into customers.