Plugins
Infer SEO Meta
 On this page 
Introduction
Unhead is internally powered by a hook system which you can plug into to add your own logic.
The Infer SEO Meta plugin automatically generates Open Graph and Twitter meta tags from your existing content:
og:title- Inferred from your page titleog:description- Inferred from your description metatwitter:card- Set automatically when usingog:image
This helps maintain consistent metadata across platforms without duplicating content.
Setup
Add the plugin to your Unhead configuration:
Input
import { InferSeoMetaPlugin } from '@unhead/addons'
const head = createHead({
  plugins: [
    InferSeoMetaPlugin()
  ]
})
// or
head.use(InferSeoMetaPlugin())
Configuration
You can customize how the plugin transforms your content:
Input
export interface InferSeoMetaPluginOptions {
  /**
   * Transform the og title.
   *
   * @param title
   */
  ogTitle?: ((title: string) => string)
  /**
   * Transform the og description.
   *
   * @param description
   */
  ogDescription?: ((description: string) => string)
  /**
   * The twitter card to use.
   *
   * @default 'summary_large_image'
   */
  twitterCard?: false | 'summary' | 'summary_large_image' | 'app' | 'player'
}
Common Use Cases
Custom OG Title Format
Remove site name suffix from Open Graph titles:
Input
import { InferSeoMetaPlugin } from '@unhead/addons'
const head = createHead({
  plugins: [
    InferSeoMetaPlugin({
      ogTitle: title => title.replace('- My Site', '')
    })
  ]
})
Disable Twitter Card
If you don't want Twitter cards generated:
Input
InferSeoMetaPlugin({
  twitterCard: false
})
Custom Description Formatting
Append a call-to-action to your Open Graph descriptions:
Input
InferSeoMetaPlugin({
  ogDescription: description => `${description} Learn more now!`
})
 Did this page help you?