rest_prepare_block_pattern

过滤钩子
apply_filters( 'rest_prepare_block_pattern', $response, $raw_pattern, $request )
参数
  • (WP_REST_Response) $response The response object.
    Required:
  • (object) $raw_pattern The unprepared block pattern.
    Required:
  • (WP_REST_Request) $request The request object.
    Required:
定义位置
相关勾子
rest_prepare_block_typerest_prepare_attachmentrest_prepare_menu_locationrest_prepare_post_typerest_prepare_comment
相关方法
_register_theme_block_patternsregister_block_core_patternrender_block_core_pattern_load_remote_block_patternsregister_block_typeregister_block_style
引入
5.8.0
弃用
-

rest_prepare_block_pattern是WordPress REST API的一个动作钩子,在准备作为REST API响应的一部分返回的块模式时被调用。这个钩子被调用时只有一个参数,那就是代表块模式的WP_REST_Response类的实例。开发者可以使用这个钩子在REST API响应中返回之前修改块模式的数据。

过滤REST API响应的区块样板。

return apply_filters( 'rest_prepare_block_pattern', $response, $raw_pattern, $request );

常见问题

FAQs
查看更多 >