search_form_format

过滤钩子
apply_filters( 'search_form_format', $format, $args )
参数
  • (string) $format The type of markup to use in the search form. Accepts 'html5', 'xhtml'.
    Required:
  • (array) $args The array of arguments for building the search form. See get_search_form() for information on accepted arguments.
    Required:
定义位置
相关勾子
search_form_argsget_search_formpostmeta_form_limitpre_get_search_formuser_new_form_tag
相关方法
get_search_formset_post_formatsize_formathas_post_formatget_post_format_search_terms_tidy
引入
5.5.0
弃用
-

search_form_format: 这是WordPress中的一个过滤钩子,允许开发者修改用于显示搜索表单的HTML代码。search_form_format钩子将搜索表单的HTML代码作为一个参数传递,钩子函数可以返回一组修改后的HTML代码来代替。这对于改变搜索表单的外观和感觉或向表单添加自定义元素很有用。

过滤搜索表格的HTML格式。

$format = apply_filters( 'search_form_format', $format, $args );

常见问题

FAQs
查看更多 >