{
  "name": "bricks/comments/author_tag",
  "kind": "filter",
  "url": "https://academy.bricksbuilder.io/developer/hooks/filters/bricks-comments-author_tag/",
  "scraped_at": "2026-08-29",
  "hook_name": "bricks/comments/author_tag",
  "description": {
    "en": "Filters the HTML tag used to wrap the comment author’s name in the comments list.",
    "zh": "筛选评论列表中用于包裹评论作者姓名的 HTML 标签。"
  },
  "parameters": [
    {
      "name": "tag",
      "type": "string",
      "type_zh": null,
      "description": {
        "en": "The HTML tag name. Defaults to h5 .",
        "zh": "HTML 标签名称。默认为 h5。"
      }
    }
  ],
  "example_usage": "add_filter( 'bricks/comments/author_tag', function( $tag ) {\n    // Change author name tag to 'span'\n    return 'span';\n} );"
}