使用WP-API检索类别的自定义字段

时间:2017-04-14 作者:verism

我添加了一个Advanced Custom Field 并尝试使用REST API通过/wp-json/wp/v2/categories.

我已经使用rest_prepare_post 滤器

function prepare_restful_posts($data, $post, $request) {
    // Do stuff to $data
}
add_filter(\'rest_prepare_post\', \'prepare_restful_posts\', 10, 3);
。。。但我似乎找不到任何关于如何定制JSON类别的有用信息。

有人能解释一下吗?

1 个回复
最合适的回答,由SO网友:verism 整理而成

原来是有帮助的标题rest_prepare_category滤器

function prepare_restful_categories($response, $item, $request) {
    // Do stuff to categories
}
add_filter(\'rest_prepare_category\', \'prepare_restful_categories\', 10, 3);