rest_prepare_comment

过滤钩子
apply_filters( 'rest_prepare_comment', $response, $comment, $request )
参数
  • (WP_REST_Response) $response The response object.
    Required:
  • (WP_Comment) $comment The original comment object.
    Required:
  • (WP_REST_Request) $request Request used to generate the response.
    Required:
定义位置
相关勾子
rest_preprocess_commentrest_prepare_attachmentrest_pre_insert_commentrest_prepare_themerest_insert_comment
相关方法
separate_commentsget_page_of_commentget_approved_commentsget_commentwp_update_commentthe_comment
引入
4.7.0
弃用
-

rest_prepare_comment: 这是WordPress中的一个动作钩子,当REST API正在准备响应的评论时被触发。它允许开发人员在返回之前修改评论数据。

过滤从REST API返回的注释。

允许在返回注释之前对其进行修改。

return apply_filters( 'rest_prepare_comment', $response, $comment, $request );

常见问题

FAQs
查看更多 >