rest_prepare_theme

过滤钩子
apply_filters( 'rest_prepare_theme', $response, $theme, $request )
参数
  • (WP_REST_Response) $response The response object.
    Required:
  • (WP_Theme) $theme Theme object used to create response.
    Required:
  • (WP_REST_Request) $request Request object.
    Required:
定义位置
相关勾子
rest_prepare_attachmentrest_prepare_userrest_prepare_commentrest_prepare_autosaverest_prepare_taxonomy
相关方法
rest_parse_datewp_prepare_themes_for_jsresume_themepreview_themeget_page_templaterest_parse_hex_color
引入
5.0.0
弃用
-

rest_prepare_theme: 这是WordPress中的一个动作钩子,当REST API准备响应一个主题时被触发。它允许开发者在返回之前修改主题数据。

过滤从REST API返回的主题数据。

return apply_filters( 'rest_prepare_theme', $response, $theme, $request );

常见问题

FAQs
查看更多 >