{
  "name": "bricks/acf/google_map/text_output",
  "kind": "filter",
  "url": "https://academy.bricksbuilder.io/developer/hooks/filters/bricks-acf-google_map-text_output/",
  "scraped_at": "2026-08-29",
  "hook_name": "bricks/acf/google_map/text_output",
  "description": {
    "en": "Filters the final HTML output of the ACF Google Map field dynamic data. This runs after the address parts or coordinates have been formatted.",
    "zh": "筛选 ACF Google Map 字段动态数据的最终 HTML 输出。该步骤发生在地址部分或坐标格式化之后。"
  },
  "parameters": [
    {
      "name": "output",
      "type": "string",
      "type_zh": null,
      "description": {
        "en": "The rendered HTML output string.",
        "zh": "已渲染的 HTML 输出字符串。"
      }
    },
    {
      "name": "value",
      "type": "array",
      "type_zh": null,
      "description": {
        "en": "The raw value of the ACF Google Map field.",
        "zh": "ACF Google Map 字段的原始值。"
      }
    },
    {
      "name": "field",
      "type": "array",
      "type_zh": null,
      "description": {
        "en": "The ACF field settings.",
        "zh": "ACF 字段设置。"
      }
    }
  ],
  "example_usage": "add_filter( 'bricks/acf/google_map/text_output', function( $output, $value, $field ) {\n    // Example: Strip HTML tags to get plain text\n    return wp_strip_all_tags( $output );\n}, 10, 3 );"
}