rest_comment_query

过滤钩子
apply_filters( 'rest_comment_query', $prepared_args, $request )
参数
  • (array) $prepared_args Array of arguments for WP_Comment_Query.
    Required:
  • (WP_REST_Request) $request The REST API request.
    Required:
定义位置
相关勾子
get_comments_numberpre_comment_user_iprest_user_queryget_comment_authorget_comment_date
相关方法
get_comments_numberget_comment_authorget_comment_typeget_comment_metaget_comment_textget_comment_time
引入
4.7.0
弃用
-

rest_comment_query – 这个钩子用来过滤在WordPress REST API中查询评论时使用的参数。开发人员可以使用这个钩子来修改查询中使用的参数,比如要检索的评论的数量或返回的顺序。

当通过REST API查询评论时,过滤WP_Comment_Query_Query。

$prepared_args = apply_filters( 'rest_comment_query', $prepared_args, $request );

常见问题

FAQs
查看更多 >