{
  "name": "bricks/frontend/disable_seo",
  "kind": "filter",
  "url": "https://academy.bricksbuilder.io/developer/hooks/filters/bricks-frontend-disable_seo/",
  "scraped_at": "2026-08-29",
  "hook_name": "bricks/frontend/disable_seo",
  "description": {
    "en": "Determines whether Bricks should generate and output SEO meta tags (e.g., description, keywords, robots) and modify the document title. Use this to disable Bricks’ built-in SEO features if you are using a dedicated SEO plugin.",
    "zh": "Bricks 1.4 引入了 bricks/inputs/sanitize_field 钩子，允许你在 Bricks 处理表单字段之前清理单个字段。"
  },
  "parameters": [
    {
      "name": "disable",
      "type": "bool",
      "type_zh": null,
      "description": {
        "en": "Whether to disable SEO tags.",
        "zh": "是否禁用 SEO 标签。"
      }
    }
  ],
  "example_usage": "add_filter( 'bricks/frontend/disable_seo', function( $disable ) {\n    // Example: Always disable Bricks SEO features\n    return true;\n} );"
}