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返回的註釋。

允許在返回註釋之前對其進行修改。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
return apply_filters( 'rest_prepare_comment', $response, $comment, $request );
return apply_filters( 'rest_prepare_comment', $response, $comment, $request );
return apply_filters( 'rest_prepare_comment', $response, $comment, $request );

常見問題

FAQs
檢視更多 >