rest_post_dispatch

过滤钩子
apply_filters( 'rest_post_dispatch', rest_ensure_response( $response )

rest_post_dispatch。这个动作是在REST API请求被派发后触发的。它允许开发者在请求被处理后执行额外的动作,如记录或修改响应。

这个过滤器在wp-includes/rest-api/class-wp-rest-server.php中有记录。

$response = apply_filters( 'rest_post_dispatch', rest_ensure_response( $response ), $server, $request );

常见问题

FAQs
查看更多 >