rest_prepare_attachment

过滤钩子
apply_filters( 'rest_prepare_attachment', $response, $post, $request )
参数
  • (WP_REST_Response) $response The response object.
    Required:
  • (WP_Post) $post The original attachment post.
    Required:
  • (WP_REST_Request) $request Request used to generate the response.
    Required:
定义位置
相关勾子
rest_prepare_commentrest_prepare_themerest_insert_attachmentrest_prepare_autosaverest_prepare_status
相关方法
prepend_attachmentwp_prepare_attachment_for_jsrest_parse_dateis_attachmentis_local_attachmentget_the_attachment_link
引入
4.7.0
弃用
-

rest_prepare_attachment – 这个钩子在WordPress的附件(媒体项目)的请求被调用。它被用来过滤在请求的响应中返回的数据。开发人员可以使用这个钩子来添加或修改附件的数据,例如添加额外的字段或修改现有字段的数据。

过滤从REST API返回的附件。

允许在附件被返回前对其进行修改。

return apply_filters( 'rest_prepare_attachment', $response, $post, $request );

常见问题

FAQs
查看更多 >