search_form_args

过滤钩子
apply_filters( 'search_form_args', $args )
参数
  • (array) $args The array of arguments for building the search form. See get_search_form() for information on accepted arguments.
    Required:
定义位置
相关勾子
search_form_formatget_search_formuser_new_form_tagterm_search_min_charsuser_edit_form_tag
相关方法
get_search_forminstall_search_formextract_from_markerssize_format_search_terms_tidytype_url_form_image
引入
5.2.0
弃用
-

search_form_args: 这是WordPress中的一个过滤器钩子,允许开发者修改传递给get_search_form函数的参数。search_form_args钩子将搜索表单的参数作为一个参数传递,钩子函数可以返回一个修改后的参数集来代替使用。这对于改变搜索表单的默认行为或向表单添加自定义选项很有用。

过滤生成搜索表单时使用的参数数组。

$args = apply_filters( 'search_form_args', $args );

常见问题

FAQs
查看更多 >