rest_prepare_widget_type

过滤钩子
apply_filters( 'rest_prepare_widget_type', $response, $widget_type, $request )
参数
  • (WP_REST_Response) $response The response object.
    Required:
  • (array) $widget_type The array of widget data.
    Required:
  • (WP_REST_Request) $request The request object.
    Required:
定义位置
相关勾子
rest_prepare_widgetrest_prepare_post_typerest_prepare_block_typerest_prepare_sidebarrest_prepare_this-post_type
相关方法
register_widgetrest_parse_dateretrieve_widgetsregister_widget_controlunregister_widgetwp_parse_widget_id
引入
5.8.0
弃用
-

rest_prepare_widget_type – 这个钩子用于修改由REST API返回的widget类型数据结构。每当通过REST API查询一个单一的widget类型,并在返回响应之前,这个钩子就会被触发。它为开发者提供了一种方法来修改由API返回的小工具类型的数据。

过滤一个小工具类型的REST API响应。

return apply_filters( 'rest_prepare_widget_type', $response, $widget_type, $request );

常见问题

FAQs
查看更多 >